From 79a6d89bccf4c5d4ce934c88bc544988c47b8e98 Mon Sep 17 00:00:00 2001 From: Luke Policinski <lpolicinski@gmail.com> Date: Wed, 19 Feb 2014 21:23:39 +0000 Subject: [PATCH 001/187] Feature Added : Ability to drag and drop in Chrome --- apps/files/ajax/upload.php | 26 ++++++++++++++++++-------- apps/files/js/file-upload.js | 3 ++- apps/files/js/filelist.js | 32 ++++++++++++++++++++++++++++---- lib/private/files/view.php | 11 +++++++++++ 4 files changed, 59 insertions(+), 13 deletions(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 145f40c50d..b2aa7a9920 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -103,22 +103,32 @@ if ($maxUploadFileSize >= 0 and $totalSize > $maxUploadFileSize) { } $result = array(); +$directory = ''; if (strpos($dir, '..') === false) { $fileCount = count($files['name']); for ($i = 0; $i < $fileCount; $i++) { + + // Get the files directory + if(isset($_POST['file_directory']) === true) { + $directory = '/'.$_POST['file_directory']; + } + // $path needs to be normalized - this failed within drag'n'drop upload to a sub-folder if (isset($_POST['resolution']) && $_POST['resolution']==='autorename') { // append a number in brackets like 'filename (2).ext' - $target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]); + $target = OCP\Files::buildNotExistingFileName(stripslashes($dir.$directory), $files['name'][$i]); } else { - $target = \OC\Files\Filesystem::normalizePath(stripslashes($dir).'/'.$files['name'][$i]); + $target = \OC\Files\Filesystem::normalizePath(stripslashes($dir.$directory).'/'.$files['name'][$i]); } - - $directory = \OC\Files\Filesystem::normalizePath(stripslashes($dir)); - if (isset($public_directory)) { - // If we are uploading from the public app, - // we want to send the relative path in the ajax request. - $directory = $public_directory; + + if(empty($directory) === true) + { + $directory = \OC\Files\Filesystem::normalizePath(stripslashes($dir)); + if (isset($public_directory)) { + // If we are uploading from the public app, + // we want to send the relative path in the ajax request. + $directory = $public_directory; + } } if ( ! \OC\Files\Filesystem::file_exists($target) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index f962a7044a..ae6fdc654e 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -327,7 +327,8 @@ $(document).ready(function() { // noone set update parameters, we set the minimum data.formData = { requesttoken: oc_requesttoken, - dir: $('#dir').val() + dir: $('#dir').val(), + file_directory: data.files[0]['relativePath'], }; } }, diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index d6cffde05d..2631812c2e 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -879,7 +879,8 @@ $(document).ready(function() { data.formData = function(form) { return [ {name: 'dir', value: dir}, - {name: 'requesttoken', value: oc_requesttoken} + {name: 'requesttoken', value: oc_requesttoken}, + {name: 'file_directory', value: data.files[0]['relativePath']} ]; }; } @@ -935,7 +936,7 @@ $(document).ready(function() { var file = result[0]; if (data.context && data.context.data('type') === 'dir') { - + // update upload counter ui var uploadtext = data.context.find('.uploadtext'); var currentUploads = parseInt(uploadtext.attr('currentUploads')); @@ -956,10 +957,33 @@ $(document).ready(function() { size += parseInt(file.size); data.context.attr('data-size', size); data.context.find('td.filesize').text(humanFileSize(size)); - - } else { + } + else { + // only append new file if uploaded into the current folder if (file.directory !== FileList.getCurrentDirectory()) { + + file_directory = file.directory.replace('/','').replace(/\/$/, "").split('/'); + + if (file_directory.length == 1) { + file_directory = file_directory[0]; + + // Get the directory + if ($('tr[data-file="'+file_directory+'"]').length == 0) + { + FileList.addDir(file_directory, 0, new Date(), false); + } + } + else { + file_directory = file_directory[0]; + } + + // update folder size + var size = parseInt($('tr[data-file="'+file_directory+'"]').attr('data-size')); + size += parseInt(file.size); + $('tr[data-file="'+file_directory+'"]').attr('data-size', size); + $('tr[data-file="'+file_directory+'"]').find('td.filesize').text(humanFileSize(size)); + return; } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 530aa8f751..7977272ee1 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -617,10 +617,21 @@ class View { } public function fromTmpFile($tmpFile, $path) { + if (Filesystem::isValidPath($path)) { + + // Get directory that the file is going into + $file_path = \OC_User::getHome(\OC_User::getUser()) . '/files'.substr($path, 0, strrpos($path,'/')); + + // Create the directories if any + if(empty($file_path) === false) { + mkdir($file_path, 0770, true); + } + if (!$tmpFile) { debug_print_backtrace(); } + $source = fopen($tmpFile, 'r'); if ($source) { $this->file_put_contents($path, $source); -- GitLab From b01492fecd5019a09cd7b1265a9cef43fc42616f Mon Sep 17 00:00:00 2001 From: Luke Policinski <lpolicinski@gmail.com> Date: Wed, 19 Feb 2014 21:28:32 +0000 Subject: [PATCH 002/187] Feature Added : Ability to drag and drop in Chrome --- apps/files/ajax/upload.php | 4 ++-- apps/files/js/filelist.js | 12 ++++++------ lib/private/files/view.php | 10 +++++----- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index b2aa7a9920..d189386e05 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -107,12 +107,12 @@ $directory = ''; if (strpos($dir, '..') === false) { $fileCount = count($files['name']); for ($i = 0; $i < $fileCount; $i++) { - + // Get the files directory if(isset($_POST['file_directory']) === true) { $directory = '/'.$_POST['file_directory']; } - + // $path needs to be normalized - this failed within drag'n'drop upload to a sub-folder if (isset($_POST['resolution']) && $_POST['resolution']==='autorename') { // append a number in brackets like 'filename (2).ext' diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 2631812c2e..17846c23b7 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -936,7 +936,7 @@ $(document).ready(function() { var file = result[0]; if (data.context && data.context.data('type') === 'dir') { - + // update upload counter ui var uploadtext = data.context.find('.uploadtext'); var currentUploads = parseInt(uploadtext.attr('currentUploads')); @@ -962,12 +962,12 @@ $(document).ready(function() { // only append new file if uploaded into the current folder if (file.directory !== FileList.getCurrentDirectory()) { - + file_directory = file.directory.replace('/','').replace(/\/$/, "").split('/'); - + if (file_directory.length == 1) { file_directory = file_directory[0]; - + // Get the directory if ($('tr[data-file="'+file_directory+'"]').length == 0) { @@ -977,13 +977,13 @@ $(document).ready(function() { else { file_directory = file_directory[0]; } - + // update folder size var size = parseInt($('tr[data-file="'+file_directory+'"]').attr('data-size')); size += parseInt(file.size); $('tr[data-file="'+file_directory+'"]').attr('data-size', size); $('tr[data-file="'+file_directory+'"]').find('td.filesize').text(humanFileSize(size)); - + return; } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 7977272ee1..ddf8c3038b 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -617,21 +617,21 @@ class View { } public function fromTmpFile($tmpFile, $path) { - + if (Filesystem::isValidPath($path)) { - + // Get directory that the file is going into $file_path = \OC_User::getHome(\OC_User::getUser()) . '/files'.substr($path, 0, strrpos($path,'/')); - + // Create the directories if any if(empty($file_path) === false) { mkdir($file_path, 0770, true); } - + if (!$tmpFile) { debug_print_backtrace(); } - + $source = fopen($tmpFile, 'r'); if ($source) { $this->file_put_contents($path, $source); -- GitLab From 089052b13af7a5e27d225ab345616511f4eaf2a9 Mon Sep 17 00:00:00 2001 From: Luke Policinski <lpolicinski@gmail.com> Date: Thu, 20 Feb 2014 20:18:27 +0000 Subject: [PATCH 003/187] Fixed issue with drag and drop not in the root directory, for folders and files --- apps/files/js/filelist.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 17846c23b7..64315c0362 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -958,10 +958,9 @@ $(document).ready(function() { data.context.attr('data-size', size); data.context.find('td.filesize').text(humanFileSize(size)); } - else { - + else { // only append new file if uploaded into the current folder - if (file.directory !== FileList.getCurrentDirectory()) { + if (file.directory != '/' && file.directory !== FileList.getCurrentDirectory()) { file_directory = file.directory.replace('/','').replace(/\/$/, "").split('/'); @@ -977,12 +976,14 @@ $(document).ready(function() { else { file_directory = file_directory[0]; } + + file_directory = FileList.findFileEl(file_directory); // update folder size - var size = parseInt($('tr[data-file="'+file_directory+'"]').attr('data-size')); + var size = parseInt(file_directory.attr('data-size')); size += parseInt(file.size); - $('tr[data-file="'+file_directory+'"]').attr('data-size', size); - $('tr[data-file="'+file_directory+'"]').find('td.filesize').text(humanFileSize(size)); + file_directory.attr('data-size', size); + file_directory.find('td.filesize').text(humanFileSize(size)); return; } -- GitLab From 3a21755963d8d9897a48ab58292345c0b710e239 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Tue, 25 Feb 2014 16:23:09 +0100 Subject: [PATCH 004/187] Pass the filesystem view as argument in the sabredav connectors and use the fileinfo object --- apps/files/appinfo/remote.php | 22 ++- .../sabre/aborteduploaddetectionplugin.php | 33 ++-- lib/private/connector/sabre/directory.php | 35 ++-- lib/private/connector/sabre/file.php | 64 +++---- lib/private/connector/sabre/node.php | 166 ++++++------------ lib/private/connector/sabre/objecttree.php | 78 ++++---- lib/private/connector/sabre/quotaplugin.php | 30 ++-- lib/private/connector/sabre/server.php | 80 ++++++--- 8 files changed, 231 insertions(+), 277 deletions(-) diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index ef22fe9218..1922bc4fcd 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -34,12 +34,8 @@ $authBackend = new OC_Connector_Sabre_Auth(); $lockBackend = new OC_Connector_Sabre_Locks(); $requestBackend = new OC_Connector_Sabre_Request(); -// Create ownCloud Dir -$rootDir = new OC_Connector_Sabre_Directory(''); -$objectTree = new \OC\Connector\Sabre\ObjectTree($rootDir); - // Fire up server -$server = new OC_Connector_Sabre_Server($objectTree); +$server = new OC_Connector_Sabre_Server(); $server->httpRequest = $requestBackend; $server->setBaseUri($baseuri); @@ -49,10 +45,22 @@ $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, $defaults->getName()) $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload $server->addPlugin(new OC_Connector_Sabre_FilesPlugin()); -$server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin()); -$server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); $server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav')); +// wait with registering these until auth is handled and the filesystem is setup +$server->subscribeEvent('beforeMethod', function () use ($server) { + $view = \OC\Files\Filesystem::getView(); + $rootInfo = $view->getFileInfo(''); + + // Create ownCloud Dir + $rootDir = new OC_Connector_Sabre_Directory($view, $rootInfo); + $objectTree = new \OC\Connector\Sabre\ObjectTree($rootDir, $view); + $server->setObjectTree($objectTree); + + $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin($view)); + $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin($view)); +}, 30); // priority 30: after auth (10) and acl(20), before lock(50) and handling the request + // And off we go! $server->exec(); diff --git a/lib/private/connector/sabre/aborteduploaddetectionplugin.php b/lib/private/connector/sabre/aborteduploaddetectionplugin.php index ad759d1d84..1a092a59a8 100644 --- a/lib/private/connector/sabre/aborteduploaddetectionplugin.php +++ b/lib/private/connector/sabre/aborteduploaddetectionplugin.php @@ -22,11 +22,16 @@ class OC_Connector_Sabre_AbortedUploadDetectionPlugin extends Sabre_DAV_ServerPl private $server; /** - * is kept public to allow overwrite for unit testing - * * @var \OC\Files\View */ - public $fileView; + private $fileView; + + /** + * @param \OC\Files\View $view + */ + public function __construct($view) { + $this->fileView = $view; + } /** * This initializes the plugin. @@ -55,7 +60,7 @@ class OC_Connector_Sabre_AbortedUploadDetectionPlugin extends Sabre_DAV_ServerPl // we should only react on PUT which is used for upload // e.g. with LOCK this will not work, but LOCK uses createFile() as well - if ($this->server->httpRequest->getMethod() !== 'PUT' ) { + if ($this->server->httpRequest->getMethod() !== 'PUT') { return; } @@ -70,9 +75,9 @@ class OC_Connector_Sabre_AbortedUploadDetectionPlugin extends Sabre_DAV_ServerPl if (!$expected) { return; } - $actual = $this->getFileView()->filesize($filePath); + $actual = $this->fileView->filesize($filePath); if ($actual != $expected) { - $this->getFileView()->unlink($filePath); + $this->fileView->unlink($filePath); throw new Sabre_DAV_Exception_BadRequest('expected filesize ' . $expected . ' got ' . $actual); } @@ -81,8 +86,7 @@ class OC_Connector_Sabre_AbortedUploadDetectionPlugin extends Sabre_DAV_ServerPl /** * @return string */ - public function getLength() - { + public function getLength() { $req = $this->server->httpRequest; $length = $req->getHeader('X-Expected-Entity-Length'); if (!$length) { @@ -91,17 +95,4 @@ class OC_Connector_Sabre_AbortedUploadDetectionPlugin extends Sabre_DAV_ServerPl return $length; } - - /** - * @return \OC\Files\View - */ - public function getFileView() - { - if (is_null($this->fileView)) { - // initialize fileView - $this->fileView = \OC\Files\Filesystem::getView(); - } - - return $this->fileView; - } } diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 02d1a9f4ba..619aec21ea 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -60,20 +60,22 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa // 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'])) { + if (!$this->fileView->isCreatable($this->path) && + !$this->fileView->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)) { + if (!$this->fileView->isCreatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } } $path = $this->path . '/' . $name; - $node = new OC_Connector_Sabre_File($path); + // using a dummy FileInfo is acceptable here since it will be refreshed after the put is complete + $info = new \OC\Files\FileInfo($path, null, null, array()); + $node = new OC_Connector_Sabre_File($this->fileView, $info); return $node->put($data); } @@ -90,12 +92,12 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa throw new \Sabre_DAV_Exception_Forbidden(); } - if (!\OC\Files\Filesystem::isCreatable($this->path)) { + if (!$this->fileView->isCreatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } $newPath = $this->path . '/' . $name; - if(!\OC\Files\Filesystem::mkdir($newPath)) { + if(!$this->fileView->mkdir($newPath)) { throw new Sabre_DAV_Exception_Forbidden('Could not create directory '.$newPath); } @@ -105,6 +107,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * Returns a specific child node, referenced by its name * * @param string $name + * @param \OCP\Files\FileInfo $info * @throws Sabre_DAV_Exception_FileNotFound * @return Sabre_DAV_INode */ @@ -112,7 +115,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa $path = $this->path . '/' . $name; if (is_null($info)) { - $info = \OC\Files\Filesystem::getFileInfo($path); + $info = $this->fileView->getFileInfo($path); } if (!$info) { @@ -120,12 +123,10 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa } if ($info['mimetype'] == 'httpd/unix-directory') { - $node = new OC_Connector_Sabre_Directory($path); + $node = new OC_Connector_Sabre_Directory($this->fileView, $info); } else { - $node = new OC_Connector_Sabre_File($path); + $node = new OC_Connector_Sabre_File($this->fileView, $info); } - - $node->setFileinfoCache($info); return $node; } @@ -136,7 +137,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function getChildren() { - $folder_content = \OC\Files\Filesystem::getDirectoryContent($this->path); + $folder_content = $this->fileView->getDirectoryContent($this->path); $paths = array(); foreach($folder_content as $info) { $paths[] = $this->path.'/'.$info['name']; @@ -167,7 +168,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa $nodes = array(); foreach($folder_content as $info) { - $node = $this->getChild($info['name'], $info); + $node = $this->getChild($info->getName(), $info); $node->setPropertyCache($properties[$this->path.'/'.$info['name']]); $nodes[] = $node; } @@ -183,7 +184,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa public function childExists($name) { $path = $this->path . '/' . $name; - return \OC\Files\Filesystem::file_exists($path); + return $this->fileView->file_exists($path); } @@ -199,11 +200,11 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa throw new \Sabre_DAV_Exception_Forbidden(); } - if (!\OC\Files\Filesystem::isDeletable($this->path)) { + if (!$this->info->isDeletable()) { throw new \Sabre_DAV_Exception_Forbidden(); } - \OC\Files\Filesystem::rmdir($this->path); + $this->fileView->rmdir($this->path); } @@ -235,7 +236,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa public function getProperties($properties) { $props = parent::getProperties($properties); if (in_array(self::GETETAG_PROPERTYNAME, $properties) && !isset($props[self::GETETAG_PROPERTYNAME])) { - $props[self::GETETAG_PROPERTYNAME] = $this->getETagPropertyForPath($this->path); + $props[self::GETETAG_PROPERTYNAME] = $this->info->getEtag(); } return $props; } diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index ef6caaf22a..cbecd90b7d 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -45,11 +45,8 @@ 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)) { + if ($this->info && $this->fileView->file_exists($this->path) && + !$this->info->isUpdateable()) { throw new \Sabre_DAV_Exception_Forbidden(); } @@ -79,10 +76,10 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D } try { - $putOkay = $fs->file_put_contents($partpath, $data); + $putOkay = $this->fileView->file_put_contents($partpath, $data); if ($putOkay === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::file_put_contents() failed', \OC_Log::ERROR); - $fs->unlink($partpath); + $this->fileView->unlink($partpath); // because we have no clue about the cause we can only throw back a 500/Internal Server Error throw new Sabre_DAV_Exception('Could not write file contents'); } @@ -105,29 +102,30 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D } // rename to correct path - $renameOkay = $fs->rename($partpath, $this->path); - $fileExists = $fs->file_exists($this->path); + $renameOkay = $this->fileView->rename($partpath, $this->path); + $fileExists = $this->fileView->file_exists($this->path); if ($renameOkay === false || $fileExists === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); - $fs->unlink($partpath); + $this->fileView->unlink($partpath); throw new Sabre_DAV_Exception('Could not rename part file to final file'); } // allow sync clients to send the mtime along in a header $mtime = OC_Request::hasModificationTime(); if ($mtime !== false) { - if($fs->touch($this->path, $mtime)) { + if($this->fileView->touch($this->path, $mtime)) { header('X-OC-MTime: accepted'); } } + $this->refreshInfo(); - return $this->getETagPropertyForPath($this->path); + return '"' . $this->info->getEtag() . '"'; } /** * Returns the data * - * @return string + * @return string | resource */ public function get() { @@ -135,7 +133,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D if (\OC_Util::encryptedFiles()) { throw new \Sabre_DAV_Exception_ServiceUnavailable(); } else { - return \OC\Files\Filesystem::fopen($this->path, 'rb'); + return $this->fileView->fopen($this->path, 'rb'); } } @@ -147,16 +145,14 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * @throws Sabre_DAV_Exception_Forbidden */ public function delete() { - $fs = $this->getFS(); - if ($this->path === 'Shared') { throw new \Sabre_DAV_Exception_Forbidden(); } - if (!$fs->isDeletable($this->path)) { + if (!$this->info->isDeletable()) { throw new \Sabre_DAV_Exception_Forbidden(); } - $fs->unlink($this->path); + $this->fileView->unlink($this->path); // remove properties $this->removeProperties(); @@ -169,12 +165,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * @return int */ public function getSize() { - $this->getFileinfoCache(); - if ($this->fileinfo_cache['size'] > -1) { - return $this->fileinfo_cache['size']; - } else { - return null; - } + return $this->info->getSize(); } /** @@ -189,11 +180,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * @return mixed */ public function getETag() { - $properties = $this->getProperties(array(self::GETETAG_PROPERTYNAME)); - if (isset($properties[self::GETETAG_PROPERTYNAME])) { - return $properties[self::GETETAG_PROPERTYNAME]; - } - return null; + return $this->info->getEtag(); } /** @@ -204,12 +191,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * @return mixed */ public function getContentType() { - if (isset($this->fileinfo_cache['mimetype'])) { - return $this->fileinfo_cache['mimetype']; - } - - return \OC\Files\Filesystem::getMimeType($this->path); - + return $this->info->getMimetype(); } /** @@ -245,15 +227,14 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D $chunk_handler->file_assemble($partFile); // here is the final atomic rename - $fs = $this->getFS(); $targetPath = $path . '/' . $info['name']; - $renameOkay = $fs->rename($partFile, $targetPath); - $fileExists = $fs->file_exists($targetPath); + $renameOkay = $this->fileView->rename($partFile, $targetPath); + $fileExists = $this->fileView->file_exists($targetPath); if ($renameOkay === false || $fileExists === false) { \OC_Log::write('webdav', '\OC\Files\Filesystem::rename() failed', \OC_Log::ERROR); // only delete if an error occurred and the target file was already created if ($fileExists) { - $fs->unlink($targetPath); + $this->fileView->unlink($targetPath); } throw new Sabre_DAV_Exception('Could not rename part file assembled from chunks'); } @@ -261,12 +242,13 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // allow sync clients to send the mtime along in a header $mtime = OC_Request::hasModificationTime(); if ($mtime !== false) { - if($fs->touch($targetPath, $mtime)) { + if($this->fileView->touch($targetPath, $mtime)) { header('X-OC-MTime: accepted'); } } - return OC_Connector_Sabre_Node::getETagPropertyForPath($targetPath); + $info = $this->fileView->getFileInfo($targetPath); + return $info->getEtag(); } return null; diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index 5807c5c7f7..3a5c721dda 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -20,7 +20,6 @@ * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ - abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IProperties { const GETETAG_PROPERTYNAME = '{DAV:}getetag'; const LASTMODIFIED_PROPERTYNAME = '{DAV:}lastmodified'; @@ -29,15 +28,13 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * Allow configuring the method used to generate Etags * * @var array(class_name, function_name) - */ + */ public static $ETagFunction = null; /** - * is kept public to allow overwrite for unit testing - * * @var \OC\Files\View */ - public $fileView; + protected $fileView; /** * The path to the current node @@ -46,53 +43,53 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr */ protected $path; - /** - * node fileinfo cache - * @var array - */ - protected $fileinfo_cache; /** * node properties cache + * * @var array */ protected $property_cache = null; + /** + * @var \OCP\Files\FileInfo + */ + protected $info; + /** * @brief Sets up the node, expects a full path name - * @param string $path - * @return void + * @param \OC\Files\View $view + * @param \OCP\Files\FileInfo $info */ - public function __construct($path) { - $this->path = $path; + public function __construct($view, $info) { + $this->fileView = $view; + $this->path = $this->fileView->getRelativePath($info->getPath()); + $this->info = $info; } - + protected function refreshInfo() { + $this->info = $this->fileView->getFileInfo($this->path); + } /** * @brief Returns the name of the node * @return string */ public function getName() { - - list(, $name) = Sabre_DAV_URLUtil::splitPath($this->path); - return $name; - + return $this->info->getName(); } /** * @brief Renames the node * @param string $name The new name - * @return void */ public function setName($name) { - $fs = $this->getFS(); // rename is only allowed if the update privilege is granted - if (!$fs->isUpdatable($this->path)) { + if (!$this->info->isUpdateable()) { throw new \Sabre_DAV_Exception_Forbidden(); } - list($parentPath, ) = Sabre_DAV_URLUtil::splitPath($this->path); + list($parentPath,) = Sabre_DAV_URLUtil::splitPath($this->path); list(, $newName) = Sabre_DAV_URLUtil::splitPath($name); if (!\OCP\Util::isValidFileName($newName)) { @@ -102,38 +99,17 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr $newPath = $parentPath . '/' . $newName; $oldPath = $this->path; - $fs->rename($this->path, $newPath); + $this->fileView->rename($this->path, $newPath); $this->path = $newPath; - $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertypath` = ?' - .' WHERE `userid` = ? AND `propertypath` = ?' ); - $query->execute( array( $newPath, OC_User::getUser(), $oldPath )); - + $query = OC_DB::prepare('UPDATE `*PREFIX*properties` SET `propertypath` = ?' + . ' WHERE `userid` = ? AND `propertypath` = ?'); + $query->execute(array($newPath, OC_User::getUser(), $oldPath)); + $this->refreshInfo(); } - public function setFileinfoCache($fileinfo_cache) - { - $this->fileinfo_cache = $fileinfo_cache; - } - - /** - * @brief Ensure that the fileinfo cache is filled - * @note Uses OC_FileCache or a direct stat - */ - protected function getFileinfoCache() { - if (!isset($this->fileinfo_cache)) { - if ($fileinfo_cache = \OC\Files\Filesystem::getFileInfo($this->path)) { - } else { - $fileinfo_cache = \OC\Files\Filesystem::stat($this->path); - } - - $this->fileinfo_cache = $fileinfo_cache; - } - } - - public function setPropertyCache($property_cache) - { + public function setPropertyCache($property_cache) { $this->property_cache = $property_cache; } @@ -142,8 +118,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * @return int */ public function getLastModified() { - $this->getFileinfoCache(); - return $this->fileinfo_cache['mtime']; + return $this->info->getMtime(); } @@ -153,7 +128,8 @@ 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) { - \OC\Files\Filesystem::touch($this->path, $mtime); + $this->fileView->touch($this->path, $mtime); + $this->refreshInfo(); } /** @@ -163,29 +139,28 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr */ public function updateProperties($properties) { $existing = $this->getProperties(array()); - foreach($properties as $propertyName => $propertyValue) { + foreach ($properties as $propertyName => $propertyValue) { // If it was null, we need to delete the property if (is_null($propertyValue)) { - if(array_key_exists( $propertyName, $existing )) { - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*properties`' - .' WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = ?' ); - $query->execute( array( OC_User::getUser(), $this->path, $propertyName )); + if (array_key_exists($propertyName, $existing)) { + $query = OC_DB::prepare('DELETE FROM `*PREFIX*properties`' + . ' WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = ?'); + $query->execute(array(OC_User::getUser(), $this->path, $propertyName)); } - } - else { - if( strcmp( $propertyName, self::GETETAG_PROPERTYNAME) === 0 ) { - \OC\Files\Filesystem::putFileInfo($this->path, array('etag'=> $propertyValue)); - } elseif( strcmp( $propertyName, self::LASTMODIFIED_PROPERTYNAME) === 0 ) { + } else { + if (strcmp($propertyName, self::GETETAG_PROPERTYNAME) === 0) { + \OC\Files\Filesystem::putFileInfo($this->path, array('etag' => $propertyValue)); + } elseif (strcmp($propertyName, self::LASTMODIFIED_PROPERTYNAME) === 0) { $this->touch($propertyValue); } else { - if(!array_key_exists( $propertyName, $existing )) { - $query = OC_DB::prepare( 'INSERT INTO `*PREFIX*properties`' - .' (`userid`,`propertypath`,`propertyname`,`propertyvalue`) VALUES(?,?,?,?)' ); - $query->execute( array( OC_User::getUser(), $this->path, $propertyName,$propertyValue )); + if (!array_key_exists($propertyName, $existing)) { + $query = OC_DB::prepare('INSERT INTO `*PREFIX*properties`' + . ' (`userid`,`propertypath`,`propertyname`,`propertyvalue`) VALUES(?,?,?,?)'); + $query->execute(array(OC_User::getUser(), $this->path, $propertyName, $propertyValue)); } else { - $query = OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertyvalue` = ?' - .' WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = ?' ); - $query->execute( array( $propertyValue,OC_User::getUser(), $this->path, $propertyName )); + $query = OC_DB::prepare('UPDATE `*PREFIX*properties` SET `propertyvalue` = ?' + . ' WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = ?'); + $query->execute(array($propertyValue, OC_User::getUser(), $this->path, $propertyName)); } } } @@ -199,9 +174,9 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr * removes all properties for this node and user */ public function removeProperties() { - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*properties`' - .' WHERE `userid` = ? AND `propertypath` = ?' ); - $query->execute( array( OC_User::getUser(), $this->path)); + $query = OC_DB::prepare('DELETE FROM `*PREFIX*properties`' + . ' WHERE `userid` = ? AND `propertypath` = ?'); + $query->execute(array(OC_User::getUser(), $this->path)); $this->setPropertyCache(null); } @@ -219,29 +194,23 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr if (is_null($this->property_cache)) { $sql = 'SELECT * FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ?'; - $result = OC_DB::executeAudited( $sql, array( OC_User::getUser(), $this->path ) ); + $result = OC_DB::executeAudited($sql, array(OC_User::getUser(), $this->path)); $this->property_cache = array(); - while( $row = $result->fetchRow()) { + while ($row = $result->fetchRow()) { $this->property_cache[$row['propertyname']] = $row['propertyvalue']; } - // Don't call the static getETagPropertyForPath, its result is not cached - $this->getFileinfoCache(); - if ($this->fileinfo_cache['etag']) { - $this->property_cache[self::GETETAG_PROPERTYNAME] = '"'.$this->fileinfo_cache['etag'].'"'; - } else { - $this->property_cache[self::GETETAG_PROPERTYNAME] = null; - } + $this->property_cache[self::GETETAG_PROPERTYNAME] = '"' . $this->info->getEtag() . '"'; } // if the array was empty, we need to return everything - if(count($properties) == 0) { + if (count($properties) == 0) { return $this->property_cache; } $props = array(); - foreach($properties as $property) { + foreach ($properties as $property) { if (isset($this->property_cache[$property])) { $props[$property] = $this->property_cache[$property]; } @@ -250,36 +219,13 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr return $props; } - /** - * Returns the ETag surrounded by double-quotes for this path. - * @param string $path Path of the file - * @return string|null Returns null if the ETag can not effectively be determined - */ - protected function getETagPropertyForPath($path) { - $data = $this->getFS()->getFileInfo($path); - if (isset($data['etag'])) { - return '"'.$data['etag'].'"'; - } - return null; - } - - protected function getFS() { - if (is_null($this->fileView)) { - $this->fileView = \OC\Files\Filesystem::getView(); - } - return $this->fileView; - } - /** * @return string|null */ - public function getFileId() - { - $this->getFileinfoCache(); - - if (isset($this->fileinfo_cache['fileid'])) { + public function getFileId() { + if ($this->info->getId()) { $instanceId = OC_Util::getInstanceId(); - $id = sprintf('%08d', $this->fileinfo_cache['fileid']); + $id = sprintf('%08d', $this->info->getId()); return $id . $instanceId; } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index d2fa425b22..d176d3333f 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -8,16 +8,28 @@ namespace OC\Connector\Sabre; +use OC\Files\FileInfo; use OC\Files\Filesystem; class ObjectTree extends \Sabre_DAV_ObjectTree { /** - * keep this public to allow mock injection during unit test - * * @var \OC\Files\View */ - public $fileView; + protected $fileView; + + /** + * Creates the object + * + * This method expects the rootObject to be passed as a parameter + * + * @param \Sabre_DAV_ICollection $rootNode + * @param \OC\Files\View $view + */ + public function __construct(\Sabre_DAV_ICollection $rootNode, $view) { + parent::__construct($rootNode); + $this->fileView = $view; + } /** * Returns the INode object for the requested path @@ -40,31 +52,34 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { if (pathinfo($path, PATHINFO_EXTENSION) === 'part') { // read from storage - $absPath = $this->getFileView()->getAbsolutePath($path); + $absPath = $this->fileView->getAbsolutePath($path); list($storage, $internalPath) = Filesystem::resolvePath('/' . $absPath); if ($storage) { + /** + * @var \OC\Files\Storage\Storage $storage + */ $scanner = $storage->getScanner($internalPath); // get data directly - $info = $scanner->getData($internalPath); + $data = $scanner->getData($internalPath); + $info = new FileInfo($absPath, $storage, $internalPath, $data); + } else { + $info = null; } - } - else { + } else { // read from cache - $info = $this->getFileView()->getFileInfo($path); + $info = $this->fileView->getFileInfo($path); } if (!$info) { throw new \Sabre_DAV_Exception_NotFound('File with name ' . $path . ' could not be located'); } - if ($info['mimetype'] === 'httpd/unix-directory') { - $node = new \OC_Connector_Sabre_Directory($path); + if ($info->getType() === 'dir') { + $node = new \OC_Connector_Sabre_Directory($this->fileView, $info); } else { - $node = new \OC_Connector_Sabre_File($path); + $node = new \OC_Connector_Sabre_File($this->fileView, $info); } - $node->setFileinfoCache($info); - $this->cache[$path] = $node; return $node; @@ -88,19 +103,18 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { list($destinationDir,) = \Sabre_DAV_URLUtil::splitPath($destinationPath); // check update privileges - $fs = $this->getFileView(); - if (!$fs->isUpdatable($sourcePath)) { + if (!$this->fileView->isUpdatable($sourcePath)) { throw new \Sabre_DAV_Exception_Forbidden(); } if ($sourceDir !== $destinationDir) { // for a full move we need update privileges on sourcePath and sourceDir as well as destinationDir - if (!$fs->isUpdatable($sourceDir)) { + if (!$this->fileView->isUpdatable($sourceDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } - if (!$fs->isUpdatable($destinationDir)) { + if (!$this->fileView->isUpdatable($destinationDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } - if (!$fs->isDeletable($sourcePath)) { + if (!$this->fileView->isDeletable($sourcePath)) { throw new \Sabre_DAV_Exception_Forbidden(); } } @@ -110,15 +124,15 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { throw new \Sabre_DAV_Exception_BadRequest(); } - $renameOkay = $fs->rename($sourcePath, $destinationPath); + $renameOkay = $this->fileView->rename($sourcePath, $destinationPath); if (!$renameOkay) { throw new \Sabre_DAV_Exception_Forbidden(''); } // update properties - $query = \OC_DB::prepare( 'UPDATE `*PREFIX*properties` SET `propertypath` = ?' - .' WHERE `userid` = ? AND `propertypath` = ?' ); - $query->execute( array( $destinationPath, \OC_User::getUser(), $sourcePath )); + $query = \OC_DB::prepare('UPDATE `*PREFIX*properties` SET `propertypath` = ?' + . ' WHERE `userid` = ? AND `propertypath` = ?'); + $query->execute(array($destinationPath, \OC_User::getUser(), $sourcePath)); $this->markDirty($sourceDir); $this->markDirty($destinationDir); @@ -137,12 +151,12 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { */ public function copy($source, $destination) { - if (Filesystem::is_file($source)) { - Filesystem::copy($source, $destination); + if ($this->fileView->is_file($source)) { + $this->fileView->copy($source, $destination); } else { - Filesystem::mkdir($destination); - $dh = Filesystem::opendir($source); - if(is_resource($dh)) { + $this->fileView->mkdir($destination); + $dh = $this->fileView->opendir($source); + if (is_resource($dh)) { while (($subnode = readdir($dh)) !== false) { if ($subnode == '.' || $subnode == '..') continue; @@ -155,14 +169,4 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { list($destinationDir,) = \Sabre_DAV_URLUtil::splitPath($destination); $this->markDirty($destinationDir); } - - /** - * @return \OC\Files\View - */ - public function getFileView() { - if (is_null($this->fileView)) { - $this->fileView = \OC\Files\Filesystem::getView(); - } - return $this->fileView; - } } diff --git a/lib/private/connector/sabre/quotaplugin.php b/lib/private/connector/sabre/quotaplugin.php index 8099794f67..13fb187eed 100644 --- a/lib/private/connector/sabre/quotaplugin.php +++ b/lib/private/connector/sabre/quotaplugin.php @@ -9,6 +9,11 @@ */ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { + /** + * @var \OC\Files\View + */ + private $view; + /** * Reference to main server object * @@ -17,11 +22,11 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { private $server; /** - * is kept public to allow overwrite for unit testing - * - * @var \OC\Files\View + * @param \OC\Files\View $view */ - public $fileView; + public function __construct($view) { + $this->view = $view; + } /** * This initializes the plugin. @@ -52,8 +57,8 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { public function checkQuota($uri, $data = null) { $length = $this->getLength(); if ($length) { - if (substr($uri, 0, 1)!=='/') { - $uri='/'.$uri; + if (substr($uri, 0, 1) !== '/') { + $uri = '/' . $uri; } list($parentUri, $newName) = Sabre_DAV_URLUtil::splitPath($uri); $freeSpace = $this->getFreeSpace($parentUri); @@ -64,8 +69,7 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { return true; } - public function getLength() - { + public function getLength() { $req = $this->server->httpRequest; $length = $req->getHeader('X-Expected-Entity-Length'); if (!$length) { @@ -84,14 +88,8 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { * @param $parentUri * @return mixed */ - public function getFreeSpace($parentUri) - { - if (is_null($this->fileView)) { - // initialize fileView - $this->fileView = \OC\Files\Filesystem::getView(); - } - - $freeSpace = $this->fileView->free_space($parentUri); + public function getFreeSpace($parentUri) { + $freeSpace = $this->view->free_space($parentUri); return $freeSpace; } } diff --git a/lib/private/connector/sabre/server.php b/lib/private/connector/sabre/server.php index 2660b043f4..bb7a7171d1 100644 --- a/lib/private/connector/sabre/server.php +++ b/lib/private/connector/sabre/server.php @@ -27,6 +27,22 @@ * @see Sabre_DAV_Server */ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { + /** + * Sets up the server + * + * Unlike Sabre_DAV_Server's constructor this does not take an INode or ObjectTree as argument, + * the object tree needs to be set later with setObjectTree + */ + public function __construct() { + $this->httpResponse = new Sabre_HTTP_Response(); + $this->httpRequest = new Sabre_HTTP_Request(); + + } + + public function setObjectTree($tree) { + $this->tree = $tree; + } + /** * @see Sabre_DAV_Server @@ -40,22 +56,22 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // The only two options for the depth of a propfind is 0 or 1 // if ($depth!=0) $depth = 1; - $newProperties = $this->getPropertiesForPath($uri,$requestedProperties,$depth); + $newProperties = $this->getPropertiesForPath($uri, $requestedProperties, $depth); // This is a multi-status response $this->httpResponse->sendStatus(207); - $this->httpResponse->setHeader('Content-Type','application/xml; charset=utf-8'); - $this->httpResponse->setHeader('Vary','Brief,Prefer'); + $this->httpResponse->setHeader('Content-Type', 'application/xml; charset=utf-8'); + $this->httpResponse->setHeader('Vary', 'Brief,Prefer'); // Normally this header is only needed for OPTIONS responses, however.. // iCal seems to also depend on these being set for PROPFIND. Since // this is not harmful, we'll add it. - $features = array('1','3', 'extended-mkcol'); - foreach($this->plugins as $plugin) { - $features = array_merge($features,$plugin->getFeatures()); + $features = array('1', '3', 'extended-mkcol'); + foreach ($this->plugins as $plugin) { + $features = array_merge($features, $plugin->getFeatures()); } - $this->httpResponse->setHeader('DAV',implode(', ',$features)); + $this->httpResponse->setHeader('DAV', implode(', ', $features)); $prefer = $this->getHTTPPrefer(); $minimal = $prefer['return-minimal']; @@ -67,10 +83,11 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { /** * Small helper to support PROPFIND with DEPTH_INFINITY. + * * @param string $path */ private function addPathNodesRecursively(&$nodes, $path) { - foreach($this->tree->getChildren($path) as $childNode) { + foreach ($this->tree->getChildren($path) as $childNode) { $nodes[$path . '/' . $childNode->getName()] = $childNode; if ($childNode instanceof Sabre_DAV_ICollection) $this->addPathNodesRecursively($nodes, $path . '/' . $childNode->getName()); @@ -81,7 +98,7 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // if ($depth!=0) $depth = 1; - $path = rtrim($path,'/'); + $path = rtrim($path, '/'); $returnPropertyList = array(); @@ -89,9 +106,10 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { $nodes = array( $path => $parentNode ); - if ($depth==1 && $parentNode instanceof Sabre_DAV_ICollection) { - foreach($this->tree->getChildren($path) as $childNode) + if ($depth == 1 && $parentNode instanceof Sabre_DAV_ICollection) { + foreach ($this->tree->getChildren($path) as $childNode) { $nodes[$path . '/' . $childNode->getName()] = $childNode; + } } else if ($depth == self::DEPTH_INFINITY && $parentNode instanceof Sabre_DAV_ICollection) { $this->addPathNodesRecursively($nodes, $path); } @@ -99,9 +117,9 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // If the propertyNames array is empty, it means all properties are requested. // We shouldn't actually return everything we know though, and only return a // sensible list. - $allProperties = count($propertyNames)==0; + $allProperties = count($propertyNames) == 0; - foreach($nodes as $myPath=>$node) { + foreach ($nodes as $myPath => $node) { $currentPropertyNames = $propertyNames; @@ -128,15 +146,15 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // to make certain decisions about the entry. // WebDAV dictates we should add a / and the end of href's for collections $removeRT = false; - if (!in_array('{DAV:}resourcetype',$currentPropertyNames)) { + if (!in_array('{DAV:}resourcetype', $currentPropertyNames)) { $currentPropertyNames[] = '{DAV:}resourcetype'; $removeRT = true; } - $result = $this->broadcastEvent('beforeGetProperties',array($myPath, $node, &$currentPropertyNames, &$newProperties)); + $result = $this->broadcastEvent('beforeGetProperties', array($myPath, $node, &$currentPropertyNames, &$newProperties)); // If this method explicitly returned false, we must ignore this // node as it is inaccessible. - if ($result===false) continue; + if ($result === false) continue; if (count($currentPropertyNames) > 0) { @@ -149,7 +167,7 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // So as we loop through this list, we will only take the // properties that were actually requested and discard the // rest. - foreach($currentPropertyNames as $k=>$currentPropertyName) { + foreach ($currentPropertyNames as $k => $currentPropertyName) { if (isset($nodeProperties[$currentPropertyName])) { unset($currentPropertyNames[$k]); $newProperties[200][$currentPropertyName] = $nodeProperties[$currentPropertyName]; @@ -160,12 +178,14 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { } - foreach($currentPropertyNames as $prop) { + foreach ($currentPropertyNames as $prop) { if (isset($newProperties[200][$prop])) continue; - switch($prop) { - case '{DAV:}getlastmodified' : if ($node->getLastModified()) $newProperties[200][$prop] = new Sabre_DAV_Property_GetLastModified($node->getLastModified()); break; + switch ($prop) { + case '{DAV:}getlastmodified' : + if ($node->getLastModified()) $newProperties[200][$prop] = new Sabre_DAV_Property_GetLastModified($node->getLastModified()); + break; case '{DAV:}getcontentlength' : if ($node instanceof Sabre_DAV_IFile) { $size = $node->getSize(); @@ -186,18 +206,22 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { $newProperties[200][$prop] = $quotaInfo[1]; } break; - case '{DAV:}getetag' : if ($node instanceof Sabre_DAV_IFile && $etag = $node->getETag()) $newProperties[200][$prop] = $etag; break; - case '{DAV:}getcontenttype' : if ($node instanceof Sabre_DAV_IFile && $ct = $node->getContentType()) $newProperties[200][$prop] = $ct; break; + case '{DAV:}getetag' : + if ($node instanceof Sabre_DAV_IFile && $etag = $node->getETag()) $newProperties[200][$prop] = $etag; + break; + case '{DAV:}getcontenttype' : + if ($node instanceof Sabre_DAV_IFile && $ct = $node->getContentType()) $newProperties[200][$prop] = $ct; + break; case '{DAV:}supported-report-set' : $reports = array(); - foreach($this->plugins as $plugin) { + foreach ($this->plugins as $plugin) { $reports = array_merge($reports, $plugin->getSupportedReportSet($myPath)); } $newProperties[200][$prop] = new Sabre_DAV_Property_SupportedReportSet($reports); break; case '{DAV:}resourcetype' : $newProperties[200]['{DAV:}resourcetype'] = new Sabre_DAV_Property_ResourceType(); - foreach($this->resourceTypeMapping as $className => $resourceType) { + foreach ($this->resourceTypeMapping as $className => $resourceType) { if ($node instanceof $className) $newProperties[200]['{DAV:}resourcetype']->add($resourceType); } break; @@ -209,16 +233,16 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { } - $this->broadcastEvent('afterGetProperties',array(trim($myPath,'/'),&$newProperties, $node)); + $this->broadcastEvent('afterGetProperties', array(trim($myPath, '/'), &$newProperties, $node)); - $newProperties['href'] = trim($myPath,'/'); + $newProperties['href'] = trim($myPath, '/'); // Its is a WebDAV recommendation to add a trailing slash to collectionnames. // Apple's iCal also requires a trailing slash for principals (rfc 3744), though this is non-standard. - if ($myPath!='' && isset($newProperties[200]['{DAV:}resourcetype'])) { + if ($myPath != '' && isset($newProperties[200]['{DAV:}resourcetype'])) { $rt = $newProperties[200]['{DAV:}resourcetype']; if ($rt->is('{DAV:}collection') || $rt->is('{DAV:}principal')) { - $newProperties['href'] .='/'; + $newProperties['href'] .= '/'; } } -- GitLab From 9231195c98b5fc709903e8a0b639b882aa3f9ec8 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Mon, 3 Mar 2014 13:51:49 +0100 Subject: [PATCH 005/187] Fix FileInfo->getType --- lib/private/files/fileinfo.php | 8 ++++++-- lib/public/files/fileinfo.php | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/private/files/fileinfo.php b/lib/private/files/fileinfo.php index 2dbdd80a26..916346b608 100644 --- a/lib/private/files/fileinfo.php +++ b/lib/private/files/fileinfo.php @@ -144,10 +144,14 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { * @return \OCP\Files\FileInfo::TYPE_FILE | \OCP\Files\FileInfo::TYPE_FOLDER */ public function getType() { - return $this->data['type']; + if ($this->data['type']) { + return $this->data['type']; + } else { + return $this->getMimetype() === 'httpd/unix-directory' ? self::TYPE_FOLDER : self::TYPE_FILE; + } } - public function getData(){ + public function getData() { return $this->data; } diff --git a/lib/public/files/fileinfo.php b/lib/public/files/fileinfo.php index 68ce45d3fa..37162e0933 100644 --- a/lib/public/files/fileinfo.php +++ b/lib/public/files/fileinfo.php @@ -9,7 +9,7 @@ namespace OCP\Files; interface FileInfo { const TYPE_FILE = 'file'; - const TYPE_FOLDER = 'folder'; + const TYPE_FOLDER = 'dir'; /** * Get the Etag of the file or folder -- GitLab From fe994669cdec336f6c4a3e724a9d468fd8f69dfe Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Mon, 3 Mar 2014 13:57:08 +0100 Subject: [PATCH 006/187] Make path for dummy fileinfo absolute --- lib/private/connector/sabre/directory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 619aec21ea..641354e763 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -72,7 +72,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa } } - $path = $this->path . '/' . $name; + $path = $this->fileView->getAbsolutePath($this->path) . '/' . $name; // using a dummy FileInfo is acceptable here since it will be refreshed after the put is complete $info = new \OC\Files\FileInfo($path, null, null, array()); $node = new OC_Connector_Sabre_File($this->fileView, $info); -- GitLab From 331fc55e2d876123580986264f47318afcf9352b Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Mon, 3 Mar 2014 14:27:24 +0100 Subject: [PATCH 007/187] Update unit tests to use the new injection --- .../sabre/aborteduploaddetectionplugin.php | 27 +++---- tests/lib/connector/sabre/directory.php | 22 ++++- tests/lib/connector/sabre/file.php | 81 +++++++++++++++---- tests/lib/connector/sabre/objecttree.php | 14 +++- tests/lib/connector/sabre/quotaplugin.php | 23 +++--- 5 files changed, 120 insertions(+), 47 deletions(-) diff --git a/tests/lib/connector/sabre/aborteduploaddetectionplugin.php b/tests/lib/connector/sabre/aborteduploaddetectionplugin.php index 201f126386..60d141e72b 100644 --- a/tests/lib/connector/sabre/aborteduploaddetectionplugin.php +++ b/tests/lib/connector/sabre/aborteduploaddetectionplugin.php @@ -1,11 +1,11 @@ <?php + /** * Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ - class Test_OC_Connector_Sabre_AbortedUploadDetectionPlugin extends PHPUnit_Framework_TestCase { /** @@ -18,17 +18,18 @@ class Test_OC_Connector_Sabre_AbortedUploadDetectionPlugin extends PHPUnit_Frame */ private $plugin; - public function setUp() { + private function init($view) { $this->server = new Sabre_DAV_Server(); - $this->plugin = new OC_Connector_Sabre_AbortedUploadDetectionPlugin(); + $this->plugin = new OC_Connector_Sabre_AbortedUploadDetectionPlugin($view); $this->plugin->initialize($this->server); } /** * @dataProvider lengthProvider */ - public function testLength($expected, $headers) - { + public function testLength($expected, $headers) { + $this->init(null); + $this->server->httpRequest = new Sabre_HTTP_Request($headers); $length = $this->plugin->getLength(); $this->assertEquals($expected, $length); @@ -37,9 +38,8 @@ class Test_OC_Connector_Sabre_AbortedUploadDetectionPlugin extends PHPUnit_Frame /** * @dataProvider verifyContentLengthProvider */ - public function testVerifyContentLength($method, $fileSize, $headers) - { - $this->plugin->fileView = $this->buildFileViewMock($fileSize); + public function testVerifyContentLength($method, $fileSize, $headers) { + $this->init($this->buildFileViewMock($fileSize)); $headers['REQUEST_METHOD'] = $method; $this->server->httpRequest = new Sabre_HTTP_Request($headers); @@ -51,12 +51,11 @@ class Test_OC_Connector_Sabre_AbortedUploadDetectionPlugin extends PHPUnit_Frame * @dataProvider verifyContentLengthFailedProvider * @expectedException Sabre_DAV_Exception_BadRequest */ - public function testVerifyContentLengthFailed($method, $fileSize, $headers) - { - $this->plugin->fileView = $this->buildFileViewMock($fileSize); - + public function testVerifyContentLengthFailed($method, $fileSize, $headers) { + $view = $this->buildFileViewMock($fileSize); + $this->init($view); // we expect unlink to be called - $this->plugin->fileView->expects($this->once())->method('unlink'); + $view->expects($this->once())->method('unlink'); $headers['REQUEST_METHOD'] = $method; $this->server->httpRequest = new Sabre_HTTP_Request($headers); @@ -92,7 +91,7 @@ class Test_OC_Connector_Sabre_AbortedUploadDetectionPlugin extends PHPUnit_Frame private function buildFileViewMock($fileSize) { // mock filesystem - $view = $this->getMock('\OC\Files\View', array('filesize', 'unlink'), array(), '', FALSE); + $view = $this->getMock('\OC\Files\View', array('filesize', 'unlink'), array(), '', false); $view->expects($this->any())->method('filesize')->withAnyParameters()->will($this->returnValue($fileSize)); return $view; diff --git a/tests/lib/connector/sabre/directory.php b/tests/lib/connector/sabre/directory.php index c501521b60..b2bf0d4a6d 100644 --- a/tests/lib/connector/sabre/directory.php +++ b/tests/lib/connector/sabre/directory.php @@ -1,18 +1,32 @@ <?php + /** * Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ - class Test_OC_Connector_Sabre_Directory extends PHPUnit_Framework_TestCase { + private function getRootDir() { + $view = $this->getMock('OC\Files\View', array(), array(), '', false); + $view->expects($this->once()) + ->method('getRelativePath') + ->will($this->returnValue('')); + + $info = $this->getMock('OC\Files\FileInfo', array(), array(), '', false); + $info->expects($this->once()) + ->method('getPath') + ->will($this->returnValue('')); + + return new OC_Connector_Sabre_Directory($view, $info); + } + /** * @expectedException Sabre_DAV_Exception_Forbidden */ public function testCreateSharedFileFails() { - $dir = new OC_Connector_Sabre_Directory(''); + $dir = $this->getRootDir(); $dir->createFile('Shared'); } @@ -20,7 +34,7 @@ class Test_OC_Connector_Sabre_Directory extends PHPUnit_Framework_TestCase { * @expectedException Sabre_DAV_Exception_Forbidden */ public function testCreateSharedFolderFails() { - $dir = new OC_Connector_Sabre_Directory(''); + $dir = $this->getRootDir(); $dir->createDirectory('Shared'); } @@ -28,7 +42,7 @@ class Test_OC_Connector_Sabre_Directory extends PHPUnit_Framework_TestCase { * @expectedException Sabre_DAV_Exception_Forbidden */ public function testDeleteSharedFolderFails() { - $dir = new OC_Connector_Sabre_Directory('Shared'); + $dir = $this->getRootDir(); $dir->delete(); } } diff --git a/tests/lib/connector/sabre/file.php b/tests/lib/connector/sabre/file.php index c2f0ffa12d..011f8ffb6e 100644 --- a/tests/lib/connector/sabre/file.php +++ b/tests/lib/connector/sabre/file.php @@ -13,9 +13,20 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { */ public function testSimplePutFails() { // setup - $file = new OC_Connector_Sabre_File('/test.txt'); - $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents'), array(), '', FALSE); - $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(false)); + $view = $this->getMock('\OC\Files\View', array('file_put_contents', 'getRelativePath'), array(), '', false); + $view->expects($this->any()) + ->method('file_put_contents') + ->will($this->returnValue(false)); + + $view->expects($this->any()) + ->method('getRelativePath') + ->will($this->returnValue('/test.txt')); + + $info = new \OC\Files\FileInfo('/test.txt', null, null, array( + 'permissions'=>\OCP\PERMISSION_ALL + )); + + $file = new OC_Connector_Sabre_File($view, $info); // action $etag = $file->put('test data'); @@ -26,10 +37,25 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { */ public function testSimplePutFailsOnRename() { // setup - $file = new OC_Connector_Sabre_File('/test.txt'); - $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents', 'rename'), array(), '', FALSE); - $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(true)); - $file->fileView->expects($this->any())->method('rename')->withAnyParameters()->will($this->returnValue(false)); + $view = $this->getMock('\OC\Files\View', array('file_put_contents', 'rename', 'getRelativePath'), array(), '', false); + $view->expects($this->any()) + ->method('file_put_contents') + ->withAnyParameters() + ->will($this->returnValue(true)); + $view->expects($this->any()) + ->method('rename') + ->withAnyParameters() + ->will($this->returnValue(false)); + + $view->expects($this->any()) + ->method('getRelativePath') + ->will($this->returnValue('/test.txt')); + + $info = new \OC\Files\FileInfo('/test.txt', null, null, array( + 'permissions' => \OCP\PERMISSION_ALL + )); + + $file = new OC_Connector_Sabre_File($view, $info); // action $etag = $file->put('test data'); @@ -40,9 +66,19 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { */ public function testSimplePutInvalidChars() { // setup - $file = new OC_Connector_Sabre_File('/super*star.txt'); - $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents'), array(), '', FALSE); - $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(false)); + $view = $this->getMock('\OC\Files\View', array('file_put_contents', 'getRelativePath'), array(), '', false); + $view->expects($this->any()) + ->method('file_put_contents') + ->will($this->returnValue(false)); + + $view->expects($this->any()) + ->method('getRelativePath') + ->will($this->returnValue('/super*star.txt')); + + $info = new \OC\Files\FileInfo('/super*star.txt', null, null, array( + 'permissions' => \OCP\PERMISSION_ALL + )); + $file = new OC_Connector_Sabre_File($view, $info); // action $etag = $file->put('test data'); @@ -54,9 +90,16 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { */ public function testSetNameInvalidChars() { // setup - $file = new OC_Connector_Sabre_File('/test.txt'); - $file->fileView = $this->getMock('\OC\Files\View', array('isUpdatable'), array(), '', FALSE); - $file->fileView->expects($this->any())->method('isUpdatable')->withAnyParameters()->will($this->returnValue(true)); + $view = $this->getMock('\OC\Files\View', array('getRelativePath'), array(), '', false); + + $view->expects($this->any()) + ->method('getRelativePath') + ->will($this->returnValue('/super*star.txt')); + + $info = new \OC\Files\FileInfo('/super*star.txt', null, null, array( + 'permissions' => \OCP\PERMISSION_ALL + )); + $file = new OC_Connector_Sabre_File($view, $info); $file->setName('/super*star.txt'); } @@ -64,7 +107,17 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { * @expectedException Sabre_DAV_Exception_Forbidden */ public function testDeleteSharedFails() { - $file = new OC_Connector_Sabre_File('Shared'); + $view = $this->getMock('\OC\Files\View', array('getRelativePath'), array(), '', false); + + $view->expects($this->any()) + ->method('getRelativePath') + ->will($this->returnValue('Shared')); + + $info = new \OC\Files\FileInfo('/Shared', null, null, array( + 'permissions' => \OCP\PERMISSION_ALL + )); + + $file = new OC_Connector_Sabre_File($view, $info); $file->delete(); } } diff --git a/tests/lib/connector/sabre/objecttree.php b/tests/lib/connector/sabre/objecttree.php index fb50c736ed..876334cf68 100644 --- a/tests/lib/connector/sabre/objecttree.php +++ b/tests/lib/connector/sabre/objecttree.php @@ -9,6 +9,7 @@ namespace Test\OC\Connector\Sabre; +use OC\Files\FileInfo; use OC_Connector_Sabre_Directory; use PHPUnit_Framework_TestCase; use Sabre_DAV_Exception_Forbidden; @@ -32,6 +33,10 @@ class TestDoubleFileView extends \OC\Files\View{ public function rename($path1, $path2) { return $this->canRename; } + + public function getRelativePath($path){ + return $path; + } } class ObjectTree extends PHPUnit_Framework_TestCase { @@ -91,10 +96,14 @@ class ObjectTree extends PHPUnit_Framework_TestCase { * @param $updatables */ private function moveTest($source, $dest, $updatables, $deletables) { - $rootDir = new OC_Connector_Sabre_Directory(''); + $view = new TestDoubleFileView($updatables, $deletables); + + $info = new FileInfo('', null, null, array()); + + $rootDir = new OC_Connector_Sabre_Directory($view, $info); $objectTree = $this->getMock('\OC\Connector\Sabre\ObjectTree', array('nodeExists', 'getNodeForPath'), - array($rootDir)); + array($rootDir, $view)); $objectTree->expects($this->once()) ->method('getNodeForPath') @@ -102,7 +111,6 @@ class ObjectTree extends PHPUnit_Framework_TestCase { ->will($this->returnValue(false)); /** @var $objectTree \OC\Connector\Sabre\ObjectTree */ - $objectTree->fileView = new TestDoubleFileView($updatables, $deletables); $objectTree->move($source, $dest); } diff --git a/tests/lib/connector/sabre/quotaplugin.php b/tests/lib/connector/sabre/quotaplugin.php index 1186de2874..6781b970a4 100644 --- a/tests/lib/connector/sabre/quotaplugin.php +++ b/tests/lib/connector/sabre/quotaplugin.php @@ -1,11 +1,11 @@ <?php + /** * Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ - class Test_OC_Connector_Sabre_QuotaPlugin extends PHPUnit_Framework_TestCase { /** @@ -18,17 +18,18 @@ class Test_OC_Connector_Sabre_QuotaPlugin extends PHPUnit_Framework_TestCase { */ private $plugin; - public function setUp() { + private function init($quota) { + $view = $this->buildFileViewMock($quota); $this->server = new Sabre_DAV_Server(); - $this->plugin = new OC_Connector_Sabre_QuotaPlugin(); + $this->plugin = new OC_Connector_Sabre_QuotaPlugin($view); $this->plugin->initialize($this->server); } /** * @dataProvider lengthProvider */ - public function testLength($expected, $headers) - { + public function testLength($expected, $headers) { + $this->init(0); $this->server->httpRequest = new Sabre_HTTP_Request($headers); $length = $this->plugin->getLength(); $this->assertEquals($expected, $length); @@ -37,9 +38,8 @@ class Test_OC_Connector_Sabre_QuotaPlugin extends PHPUnit_Framework_TestCase { /** * @dataProvider quotaOkayProvider */ - public function testCheckQuota($quota, $headers) - { - $this->plugin->fileView = $this->buildFileViewMock($quota); + public function testCheckQuota($quota, $headers) { + $this->init($quota); $this->server->httpRequest = new Sabre_HTTP_Request($headers); $result = $this->plugin->checkQuota(''); @@ -50,9 +50,8 @@ class Test_OC_Connector_Sabre_QuotaPlugin extends PHPUnit_Framework_TestCase { * @expectedException Sabre_DAV_Exception_InsufficientStorage * @dataProvider quotaExceededProvider */ - public function testCheckExceededQuota($quota, $headers) - { - $this->plugin->fileView = $this->buildFileViewMock($quota); + public function testCheckExceededQuota($quota, $headers) { + $this->init($quota); $this->server->httpRequest = new Sabre_HTTP_Request($headers); $this->plugin->checkQuota(''); @@ -92,7 +91,7 @@ class Test_OC_Connector_Sabre_QuotaPlugin extends PHPUnit_Framework_TestCase { private function buildFileViewMock($quota) { // mock filesysten - $view = $this->getMock('\OC\Files\View', array('free_space'), array(), '', FALSE); + $view = $this->getMock('\OC\Files\View', array('free_space'), array(), '', false); $view->expects($this->any())->method('free_space')->withAnyParameters()->will($this->returnValue($quota)); return $view; -- GitLab From 5ef37c28d1dc73c1fc16a731954b84b46c1943f4 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Tue, 4 Mar 2014 13:28:48 +0100 Subject: [PATCH 008/187] Remove the need for a custom SabreDav server constructor --- apps/files/appinfo/remote.php | 8 ++++---- lib/private/connector/sabre/objecttree.php | 19 ++++++++++++++++--- lib/private/connector/sabre/server.php | 11 ----------- 3 files changed, 20 insertions(+), 18 deletions(-) diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 1922bc4fcd..d9c667c010 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -35,7 +35,8 @@ $lockBackend = new OC_Connector_Sabre_Locks(); $requestBackend = new OC_Connector_Sabre_Request(); // Fire up server -$server = new OC_Connector_Sabre_Server(); +$objectTree = new \OC\Connector\Sabre\ObjectTree(); +$server = new OC_Connector_Sabre_Server($objectTree); $server->httpRequest = $requestBackend; $server->setBaseUri($baseuri); @@ -49,14 +50,13 @@ $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); $server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav')); // wait with registering these until auth is handled and the filesystem is setup -$server->subscribeEvent('beforeMethod', function () use ($server) { +$server->subscribeEvent('beforeMethod', function () use ($server, $objectTree) { $view = \OC\Files\Filesystem::getView(); $rootInfo = $view->getFileInfo(''); // Create ownCloud Dir $rootDir = new OC_Connector_Sabre_Directory($view, $rootInfo); - $objectTree = new \OC\Connector\Sabre\ObjectTree($rootDir, $view); - $server->setObjectTree($objectTree); + $objectTree->init($rootDir, $view); $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin($view)); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin($view)); diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index d176d3333f..76f4817d3b 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -22,12 +22,16 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { * Creates the object * * This method expects the rootObject to be passed as a parameter - * + */ + public function __construct() { + } + + /** * @param \Sabre_DAV_ICollection $rootNode * @param \OC\Files\View $view */ - public function __construct(\Sabre_DAV_ICollection $rootNode, $view) { - parent::__construct($rootNode); + public function init(\Sabre_DAV_ICollection $rootNode, \OC\Files\View $view) { + $this->rootNode = $rootNode; $this->fileView = $view; } @@ -39,6 +43,9 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { * @return \Sabre_DAV_INode */ public function getNodeForPath($path) { + if (!$this->fileView) { + throw new \Sabre_DAV_Exception_ServiceUnavailable('filesystem not setup'); + } $path = trim($path, '/'); if (isset($this->cache[$path])) { @@ -94,6 +101,9 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { * @return int */ public function move($sourcePath, $destinationPath) { + if (!$this->fileView) { + throw new \Sabre_DAV_Exception_ServiceUnavailable('filesystem not setup'); + } $sourceNode = $this->getNodeForPath($sourcePath); if ($sourceNode instanceof \Sabre_DAV_ICollection and $this->nodeExists($destinationPath)) { @@ -150,6 +160,9 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { * @return void */ public function copy($source, $destination) { + if (!$this->fileView) { + throw new \Sabre_DAV_Exception_ServiceUnavailable('filesystem not setup'); + } if ($this->fileView->is_file($source)) { $this->fileView->copy($source, $destination); diff --git a/lib/private/connector/sabre/server.php b/lib/private/connector/sabre/server.php index bb7a7171d1..b09237fb3c 100644 --- a/lib/private/connector/sabre/server.php +++ b/lib/private/connector/sabre/server.php @@ -27,17 +27,6 @@ * @see Sabre_DAV_Server */ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { - /** - * Sets up the server - * - * Unlike Sabre_DAV_Server's constructor this does not take an INode or ObjectTree as argument, - * the object tree needs to be set later with setObjectTree - */ - public function __construct() { - $this->httpResponse = new Sabre_HTTP_Response(); - $this->httpRequest = new Sabre_HTTP_Request(); - - } public function setObjectTree($tree) { $this->tree = $tree; -- GitLab From 52115662057408d095249a237a78c2207ab1b821 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Tue, 4 Mar 2014 16:36:03 +0100 Subject: [PATCH 009/187] update test case --- tests/lib/connector/sabre/objecttree.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lib/connector/sabre/objecttree.php b/tests/lib/connector/sabre/objecttree.php index 876334cf68..bc8ec98fae 100644 --- a/tests/lib/connector/sabre/objecttree.php +++ b/tests/lib/connector/sabre/objecttree.php @@ -111,6 +111,7 @@ class ObjectTree extends PHPUnit_Framework_TestCase { ->will($this->returnValue(false)); /** @var $objectTree \OC\Connector\Sabre\ObjectTree */ + $objectTree->init($rootDir, $view); $objectTree->move($source, $dest); } -- GitLab From a687498547448d6ff11eccc0acddcf0647873ce8 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Wed, 5 Mar 2014 13:19:08 +0100 Subject: [PATCH 010/187] Fix encryption webdav tests --- apps/files_encryption/tests/util.php | 6 +++++- apps/files_encryption/tests/webdav.php | 19 ++++++++++++++----- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index f70e30c4d7..5fa96f6ad6 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -510,7 +510,11 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { */ public static function loginHelper($user, $create = false, $password = false) { if ($create) { - \OC_User::createUser($user, $user); + try { + \OC_User::createUser($user, $user); + } catch(\Exception $e) { // catch username is already being used from previous aborted runs + + } } if ($password === false) { diff --git a/apps/files_encryption/tests/webdav.php b/apps/files_encryption/tests/webdav.php index 8e8b9c53ce..1f23be3e79 100755 --- a/apps/files_encryption/tests/webdav.php +++ b/apps/files_encryption/tests/webdav.php @@ -33,6 +33,7 @@ use OCA\Encryption; /** * Class Test_Encryption_Webdav + * * @brief this class provide basic webdav tests for PUT,GET and DELETE */ class Test_Encryption_Webdav extends \PHPUnit_Framework_TestCase { @@ -48,6 +49,8 @@ class Test_Encryption_Webdav extends \PHPUnit_Framework_TestCase { public $dataShort; public $stateFilesTrashbin; + private static $storage; + public static function setUpBeforeClass() { // reset backend \OC_User::clearBackends(); @@ -65,6 +68,8 @@ class Test_Encryption_Webdav extends \PHPUnit_Framework_TestCase { // create test user \Test_Encryption_Util::loginHelper(\Test_Encryption_Webdav::TEST_ENCRYPTION_WEBDAV_USER1, true); + + self::$storage = new \OC\Files\Storage\Temporary(array()); } function setUp() { @@ -96,8 +101,7 @@ class Test_Encryption_Webdav extends \PHPUnit_Framework_TestCase { // reset app files_trashbin if ($this->stateFilesTrashbin) { OC_App::enable('files_trashbin'); - } - else { + } else { OC_App::disable('files_trashbin'); } } @@ -153,7 +157,7 @@ class Test_Encryption_Webdav extends \PHPUnit_Framework_TestCase { $this->assertTrue(Encryption\Crypt::isCatfileContent($encryptedContent)); // get decrypted file contents - $decrypt = file_get_contents('crypt:///' . $this->userId . '/files'. $filename); + $decrypt = file_get_contents('crypt:///' . $this->userId . '/files' . $filename); // check if file content match with the written content $this->assertEquals($this->dataShort, $decrypt); @@ -225,7 +229,12 @@ class Test_Encryption_Webdav extends \PHPUnit_Framework_TestCase { $requestBackend = new OC_Connector_Sabre_Request(); // Create ownCloud Dir - $publicDir = new OC_Connector_Sabre_Directory(''); + $root = '/' . $this->userId . '/files'; + \OC\Files\Filesystem::mount(self::$storage, array(), $root); + $view = new \OC\Files\View($root); + $publicDir = new OC_Connector_Sabre_Directory($view, $view->getFileInfo('')); + $objectTree = new \OC\Connector\Sabre\ObjectTree(); + $objectTree->init($publicDir, $view); // Fire up server $server = new Sabre_DAV_Server($publicDir); @@ -236,7 +245,7 @@ class Test_Encryption_Webdav extends \PHPUnit_Framework_TestCase { $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, 'ownCloud')); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload - $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); + $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin($view)); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); // And off we go! -- GitLab From 8fcc29ee8b7b5ed600c8ec7116f52486718467f6 Mon Sep 17 00:00:00 2001 From: root <leo@strike.wu.ac.at> Date: Tue, 10 Dec 2013 17:50:45 +0100 Subject: [PATCH 011/187] only check ldap_errno if an ldap_* function actually fails fix wizard errors reset search paging right after the search, not before some of the possible next search operations cookie contains binary characters, don't log it (avoids json_encode(): Invalid UTF-8 sequence in argument errors) --- apps/user_ldap/lib/access.php | 10 ++++++---- apps/user_ldap/lib/ldap.php | 6 ++++-- apps/user_ldap/lib/wizard.php | 1 + 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index b7e4023dd7..018cf13c91 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -63,7 +63,6 @@ class Access extends LDAPUtility { return false; } //all or nothing! otherwise we get in trouble with. - $this->initPagedSearch($filter, array($dn), $attr, 99999, 0); $dn = $this->DNasBaseParameter($dn); $rr = @$this->ldap->read($cr, $dn, $filter, array($attr)); if(!$this->ldap->isResource($rr)) { @@ -707,6 +706,9 @@ class Access extends LDAPUtility { $linkResources = array_pad(array(), count($base), $cr); $sr = $this->ldap->search($linkResources, $base, $filter, $attr); $error = $this->ldap->errno($cr); + if ($pagedSearchOK) { + $this->ldap->controlPagedResult($cr, 0, false, ""); + } if(!is_array($sr) || $error !== 0) { \OCP\Util::writeLog('user_ldap', 'Error when searching: '.$this->ldap->error($cr). @@ -1236,9 +1238,9 @@ class Access extends LDAPUtility { if($this->connection->hasPagedResultSupport && !is_null($limit)) { $offset = intval($offset); //can be null \OCP\Util::writeLog('user_ldap', - 'initializing paged search for Filter'.$filter.' base '.print_r($bases, true) + 'initializing paged search for Filter '.$filter.' base '.print_r($bases, true) .' attr '.print_r($attr, true). ' limit ' .$limit.' offset '.$offset, - \OCP\Util::INFO); + \OCP\Util::DEBUG); //get the cookie from the search for the previous search, required by LDAP foreach($bases as $base) { @@ -1260,7 +1262,7 @@ class Access extends LDAPUtility { } if(!is_null($cookie)) { if($offset > 0) { - \OCP\Util::writeLog('user_ldap', 'Cookie '.$cookie, \OCP\Util::INFO); + \OCP\Util::writeLog('user_ldap', 'Cookie '.CRC32($cookie), \OCP\Util::INFO); } $pagedSearchOK = $this->ldap->controlPagedResult( $this->connection->getConnectionResource(), $limit, diff --git a/apps/user_ldap/lib/ldap.php b/apps/user_ldap/lib/ldap.php index de9b7481c1..0e5f78cd28 100644 --- a/apps/user_ldap/lib/ldap.php +++ b/apps/user_ldap/lib/ldap.php @@ -78,7 +78,7 @@ class LDAP implements ILDAPWrapper { } public function nextEntry($link, $result) { - return $this->invokeLDAPMethod('next_entry', $link, $result); + return ldap_next_entry($link, $result); } public function read($link, $baseDN, $filter, $attr) { @@ -139,7 +139,9 @@ class LDAP implements ILDAPWrapper { if(function_exists($func)) { $this->preFunctionCall($func, $arguments); $result = call_user_func_array($func, $arguments); - $this->postFunctionCall(); + if ($result === FALSE) { + $this->postFunctionCall(); + } return $result; } } diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index e79090febc..04ea87d53e 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -799,6 +799,7 @@ class Wizard extends LDAPUtility { \OCP\Util::writeLog('user_ldap', 'Wiz: Setting LDAP Options ', \OCP\Util::DEBUG); //set LDAP options $this->ldap->setOption($cr, LDAP_OPT_PROTOCOL_VERSION, 3); + $this->ldap->setOption($cr, LDAP_OPT_REFERRALS, 0); $this->ldap->setOption($cr, LDAP_OPT_NETWORK_TIMEOUT, self::LDAP_NW_TIMEOUT); if($tls) { $isTlsWorking = @$this->ldap->startTls($cr); -- GitLab From 6585bd5a500292a284490e96250d465280f3c34b Mon Sep 17 00:00:00 2001 From: root <leo@strike.wu.ac.at> Date: Wed, 11 Dec 2013 11:00:53 +0100 Subject: [PATCH 012/187] "reset" ldap pagedSearch control by setting it to a high value call nextEntry via invokeLDAPMethod --- apps/user_ldap/lib/ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/ldap.php b/apps/user_ldap/lib/ldap.php index 0e5f78cd28..d1ca91045b 100644 --- a/apps/user_ldap/lib/ldap.php +++ b/apps/user_ldap/lib/ldap.php @@ -78,7 +78,7 @@ class LDAP implements ILDAPWrapper { } public function nextEntry($link, $result) { - return ldap_next_entry($link, $result); + return $this->invokeLDAPMethod('next_entry', $link, $result); } public function read($link, $baseDN, $filter, $attr) { -- GitLab From f850fcfac51080baf1af90d59a8d94b80721c819 Mon Sep 17 00:00:00 2001 From: Alexander Bergolth <leo@strike.wu.ac.at> Date: Thu, 6 Mar 2014 12:23:20 +0100 Subject: [PATCH 013/187] "reset" ldap pagedSearch control by setting it to a high value --- apps/user_ldap/lib/access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 018cf13c91..01bfbb4cbf 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -707,7 +707,7 @@ class Access extends LDAPUtility { $sr = $this->ldap->search($linkResources, $base, $filter, $attr); $error = $this->ldap->errno($cr); if ($pagedSearchOK) { - $this->ldap->controlPagedResult($cr, 0, false, ""); + $this->ldap->controlPagedResult($cr, 999999, false, ""); } if(!is_array($sr) || $error !== 0) { \OCP\Util::writeLog('user_ldap', -- GitLab From 08a46e30806434bcd854f7868c3c9c6553d4ac11 Mon Sep 17 00:00:00 2001 From: adrien <adrien.waksberg@believedigital.com> Date: Thu, 6 Mar 2014 17:57:09 +0100 Subject: [PATCH 014/187] add cache for single users --- lib/private/user/database.php | 78 ++++++++++++++++++++--------------- 1 file changed, 45 insertions(+), 33 deletions(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 15e6643dfb..911073c133 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -42,7 +42,9 @@ class OC_User_Database extends OC_User_Backend { /** * @var PasswordHash */ - static private $hasher = null; + private static $hasher = null; + + protected static $cache = array(); private function getHasher() { if (!self::$hasher) { @@ -135,11 +137,9 @@ class OC_User_Database extends OC_User_Backend { * @return string display name */ public function getDisplayName($uid) { - $query = OC_DB::prepare('SELECT `displayname` FROM `*PREFIX*users` WHERE `uid` = ?'); - $result = $query->execute(array($uid))->fetchAll(); - $displayName = trim($result[0]['displayname'], ' '); - if (!empty($displayName)) { - return $displayName; + $this->loadUser($uid); + if (!empty(self::$cache['uid']['displayname'])) { + return self::$cache['uid']['displayname']; } else { return $uid; } @@ -183,23 +183,41 @@ class OC_User_Database extends OC_User_Backend { $storedHash = $row['password']; if ($storedHash[0] == '$') { //the new phpass based hashing $hasher = $this->getHasher(); - if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) { - return $row['uid']; - } else { - return false; - } - } else { //old sha1 based hashing - if (sha1($password) == $storedHash) { - //upgrade to new hashing - $this->setPassword($row['uid'], $password); + if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) return $row['uid']; - } else { - return false; - } + + //old sha1 based hashing + } elseif (sha1($password) == $storedHash) { + //upgrade to new hashing + $this->setPassword($row['uid'], $password); + return $row['uid']; + } + } + + return false; + } + + /** + * @brief Load an user in the cache + * @returns boolean + */ + protected function loadUser($uid) { + if (empty(self::$cache[$uid])) { + $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); + $result = $query->execute(array($uid)); + + if (OC_DB::isError($result)) { + OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); + return false; + } + + while ($row = $result->fetchRow()) { + self::$cache[$uid]['uid'] = $row['uid']; + self::$cache[$uid]['displayname'] = $row['displayname']; } - } else { - return false; } + + return true; } /** @@ -224,26 +242,20 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid) { - $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); - $result = $query->execute(array($uid)); - if (OC_DB::isError($result)) { - OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); - return false; - } - return $result->fetchOne() > 0; + $this->loadUser($uid); + return empty(self::$cache[$uid]) ? false : true; } /** * @brief get the user's home directory * @param string $uid the username - * @return string|false + * @return boolean */ public function getHome($uid) { - if ($this->userExists($uid)) { + if ($this->userExists($uid)) return OC_Config::getValue("datadirectory", OC::$SERVERROOT . "/data") . '/' . $uid; - } else { - return false; - } + + return false; } /** @@ -256,7 +268,7 @@ class OC_User_Database extends OC_User_Backend { /** * counts the users in the database * - * @return false|string | bool + * @return int | bool */ public function countUsers() { $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`'); -- GitLab From 43e79f41f34b71499b9bac85d27b87b53a569da0 Mon Sep 17 00:00:00 2001 From: ben-denham <bend@catalyst.net.nz> Date: Fri, 28 Feb 2014 15:07:25 +1300 Subject: [PATCH 015/187] Added improved version of patch by @blizzz in https://github.com/owncloud/core/issues/6651#issuecomment-32261257 to stop filter settings from being reset under a race condition. --- apps/user_ldap/js/settings.js | 192 +++++++++++++++++++++------------- 1 file changed, 118 insertions(+), 74 deletions(-) diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index acf88ef58a..0470ee079f 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -138,6 +138,108 @@ var LdapConfiguration = { } }; + +// LdapFilter object. + +function LdapFilter(target) { + this.locked = true; + this.target = false; + this.mode = LdapWizard.filterModeAssisted; + this.lazyRunCompose = false; + + if( target === 'User' || + target === 'Login' || + target === 'Group') { + this.target = target; + this.determineMode(); + } +} + +LdapFilter.prototype.compose = function() { + var action; + + if(this.locked) { + this.lazyRunCompose = true; + return false; + } + + if(this.target === 'User') { + action = 'getUserListFilter'; + } else if(this.target === 'Login') { + action = 'getUserLoginFilter'; + } else if(this.target === 'Group') { + action = 'getGroupFilter'; + } + + if(!$('#raw'+this.target+'FilterContainer').hasClass('invisible')) { + //Raw filter editing, i.e. user defined filter, don't compose + return; + } + + var param = 'action='+action+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + + var filter = this; + + LdapWizard.ajax(param, + function(result) { + LdapWizard.applyChanges(result); + if(filter.target === 'User') { + LdapWizard.countUsers(); + } else if(filter.target === 'Group') { + LdapWizard.countGroups(); + LdapWizard.detectGroupMemberAssoc(); + } + }, + function (result) { + // error handling + } + ); +} + +LdapFilter.prototype.determineMode = function() { + var param = 'action=get'+encodeURIComponent(this.target)+'FilterMode'+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + + var filter = this; + LdapWizard.ajax(param, + function(result) { + property = 'ldap' + filter.target + 'FilterMode'; + filter.mode = result.changes[property]; + if(filter.mode == LdapWizard.filterModeRaw + && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + } else if(filter.mode == LdapWizard.filterModeAssisted + && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + } + filter.unlock(); + }, + function (result) { + //on error case get back to default i.e. Assisted + if(!$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + filter.mode = LdapWizard.filterModeAssisted; + } + filter.unlock(); + } + ); + +} + +LdapFilter.prototype.unlock = function() { + this.locked = false; + if(this.lazyRunCompose) { + this.lazyRunCompose = false; + this.compose(); + } +} + +// end of LdapFilter object. + + var LdapWizard = { checkPortInfoShown: false, saveBlacklist: {}, @@ -145,6 +247,9 @@ var LdapWizard = { spinner: '<img class="wizSpinner" src="'+ OC.imagePath('core', 'loading.gif') +'">', filterModeAssisted: 0, filterModeRaw: 1, + userFilter: false, + loginFilter: false, + groupFilter: false, ajax: function(param, fnOnSuccess, fnOnError) { $.post( @@ -275,41 +380,6 @@ var LdapWizard = { } }, - composeFilter: function(type) { - subject = type.charAt(0).toUpperCase() + type.substr(1); - if(!$('#raw'+subject+'FilterContainer').hasClass('invisible')) { - //Raw filter editing, i.e. user defined filter, don't compose - return; - } - - if(type == 'user') { - action = 'getUserListFilter'; - } else if(type == 'login') { - action = 'getUserLoginFilter'; - } else if(type == 'group') { - action = 'getGroupFilter'; - } - - param = 'action='+action+ - '&ldap_serverconfig_chooser='+ - encodeURIComponent($('#ldap_serverconfig_chooser').val()); - - LdapWizard.ajax(param, - function(result) { - LdapWizard.applyChanges(result); - if(type == 'user') { - LdapWizard.countUsers(); - } else if(type == 'group') { - LdapWizard.countGroups(); - LdapWizard.detectGroupMemberAssoc(); - } - }, - function (result) { - // error handling - } - ); - }, - controlBack: function() { curTabIndex = $('#ldapSettings').tabs('option', 'active'); if(curTabIndex == 0) { @@ -559,7 +629,7 @@ var LdapWizard = { }, initGroupFilter: function() { - LdapWizard.regardFilterMode('Group'); + LdapWizard.groupFilter = new LdapFilter('Group'); LdapWizard.findObjectClasses('ldap_groupfilter_objectclass', 'Group'); LdapWizard.findAvailableGroups('ldap_groupfilter_groups', 'Groups'); LdapWizard.countGroups(); @@ -568,13 +638,13 @@ var LdapWizard = { /** init login filter tab section **/ initLoginFilter: function() { - LdapWizard.regardFilterMode('Login'); + LdapWizard.loginFilter = new LdapFilter('Login'); LdapWizard.findAttributes(); }, postInitLoginFilter: function() { if($('#rawLoginFilterContainer').hasClass('invisible')) { - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } }, @@ -600,7 +670,7 @@ var LdapWizard = { initUserFilter: function() { LdapWizard.userFilterObjectClassesHasRun = false; LdapWizard.userFilterAvailableGroupsHasRun = false; - LdapWizard.regardFilterMode('User'); + LdapWizard.userFilter = new LdapFilter('User'); LdapWizard.findObjectClasses('ldap_userfilter_objectclass', 'User'); LdapWizard.findAvailableGroups('ldap_userfilter_groups', 'Users'); }, @@ -608,7 +678,7 @@ var LdapWizard = { postInitUserFilter: function() { if(LdapWizard.userFilterObjectClassesHasRun && LdapWizard.userFilterAvailableGroupsHasRun) { - LdapWizard.composeFilter('user'); + LdapWizard.userFilter.compose(); LdapWizard.countUsers(); } }, @@ -657,7 +727,7 @@ var LdapWizard = { if(triggerObj.id == 'ldap_loginfilter_username' || triggerObj.id == 'ldap_loginfilter_email') { - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } if($('#ldapSettings').tabs('option', 'active') == 0) { @@ -666,32 +736,6 @@ var LdapWizard = { } }, - regardFilterMode: function(subject) { - param = 'action=get'+encodeURIComponent(subject)+'FilterMode'+ - '&ldap_serverconfig_chooser='+ - encodeURIComponent($('#ldap_serverconfig_chooser').val()); - - LdapWizard.ajax(param, - function(result) { - property = 'ldap' + subject + 'FilterMode'; - mode = result.changes[property]; - if(mode == LdapWizard.filterModeRaw - && $('#raw'+subject+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+subject+'Filter'](); - } else if(mode == LdapWizard.filterModeAssisted - && !$('#raw'+subject+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+subject+'Filter'](); - } - }, - function (result) { - //on error case get back to default i.e. Assisted - if(!$('#raw'+subject+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+subject+'Filter'](); - } - } - ); - }, - save: function(inputObj) { if(LdapWizard.blacklistRemove(inputObj.id)) { return; @@ -713,15 +757,15 @@ var LdapWizard = { LdapWizard._save($('#'+originalObj)[0], $.trim(values)); if(originalObj == 'ldap_userfilter_objectclass' || originalObj == 'ldap_userfilter_groups') { - LdapWizard.composeFilter('user'); + LdapWizard.userFilter.compose(); //when user filter is changed afterwards, login filter needs to //be adjusted, too - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } else if(originalObj == 'ldap_loginfilter_attributes') { - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } else if(originalObj == 'ldap_groupfilter_objectclass' || originalObj == 'ldap_groupfilter_groups') { - LdapWizard.composeFilter('group'); + LdapWizard.groupFilter.compose(); } }, @@ -777,10 +821,10 @@ var LdapWizard = { LdapWizard._save({ id: modeKey }, LdapWizard.filterModeAssisted); if(moc.indexOf('user') >= 0) { LdapWizard.blacklistRemove('ldap_userlist_filter'); - LdapWizard.composeFilter('user'); + LdapWizard.userFilter.compose(); } else { LdapWizard.blacklistRemove('ldap_group_filter'); - LdapWizard.composeFilter('group'); + LdapWizard.groupFilter.compose(); } } }, @@ -814,7 +858,7 @@ var LdapWizard = { $('#ldap_loginfilter_username').prop('disabled', property); LdapWizard._save({ id: 'ldapLoginFilterMode' }, mode); if(action == 'enable') { - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } }, -- GitLab From ef65381a0b41a1d6519e7d5bf39d3aac75127a1e Mon Sep 17 00:00:00 2001 From: ben-denham <bend@catalyst.net.nz> Date: Fri, 7 Mar 2014 10:10:42 +1300 Subject: [PATCH 016/187] Moved LdapFilter into a separate js file in user_ldap. --- apps/user_ldap/js/ldapFilter.js | 95 +++++++++++++++++++++++++++++ apps/user_ldap/js/settings.js | 102 -------------------------------- apps/user_ldap/settings.php | 1 + 3 files changed, 96 insertions(+), 102 deletions(-) create mode 100644 apps/user_ldap/js/ldapFilter.js diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js new file mode 100644 index 0000000000..71f8cd6c7c --- /dev/null +++ b/apps/user_ldap/js/ldapFilter.js @@ -0,0 +1,95 @@ +function LdapFilter(target) { + this.locked = true; + this.target = false; + this.mode = LdapWizard.filterModeAssisted; + this.lazyRunCompose = false; + + if( target === 'User' || + target === 'Login' || + target === 'Group') { + this.target = target; + this.determineMode(); + } +} + +LdapFilter.prototype.compose = function() { + var action; + + if(this.locked) { + this.lazyRunCompose = true; + return false; + } + + if(this.target === 'User') { + action = 'getUserListFilter'; + } else if(this.target === 'Login') { + action = 'getUserLoginFilter'; + } else if(this.target === 'Group') { + action = 'getGroupFilter'; + } + + if(!$('#raw'+this.target+'FilterContainer').hasClass('invisible')) { + //Raw filter editing, i.e. user defined filter, don't compose + return; + } + + var param = 'action='+action+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + + var filter = this; + + LdapWizard.ajax(param, + function(result) { + LdapWizard.applyChanges(result); + if(filter.target === 'User') { + LdapWizard.countUsers(); + } else if(filter.target === 'Group') { + LdapWizard.countGroups(); + LdapWizard.detectGroupMemberAssoc(); + } + }, + function (result) { + // error handling + } + ); +} + +LdapFilter.prototype.determineMode = function() { + var param = 'action=get'+encodeURIComponent(this.target)+'FilterMode'+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + + var filter = this; + LdapWizard.ajax(param, + function(result) { + property = 'ldap' + filter.target + 'FilterMode'; + filter.mode = result.changes[property]; + if(filter.mode == LdapWizard.filterModeRaw + && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + } else if(filter.mode == LdapWizard.filterModeAssisted + && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + } + filter.unlock(); + }, + function (result) { + //on error case get back to default i.e. Assisted + if(!$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + filter.mode = LdapWizard.filterModeAssisted; + } + filter.unlock(); + } + ); + +} + +LdapFilter.prototype.unlock = function() { + this.locked = false; + if(this.lazyRunCompose) { + this.lazyRunCompose = false; + this.compose(); + } +} diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 0470ee079f..57f61b7d68 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -138,108 +138,6 @@ var LdapConfiguration = { } }; - -// LdapFilter object. - -function LdapFilter(target) { - this.locked = true; - this.target = false; - this.mode = LdapWizard.filterModeAssisted; - this.lazyRunCompose = false; - - if( target === 'User' || - target === 'Login' || - target === 'Group') { - this.target = target; - this.determineMode(); - } -} - -LdapFilter.prototype.compose = function() { - var action; - - if(this.locked) { - this.lazyRunCompose = true; - return false; - } - - if(this.target === 'User') { - action = 'getUserListFilter'; - } else if(this.target === 'Login') { - action = 'getUserLoginFilter'; - } else if(this.target === 'Group') { - action = 'getGroupFilter'; - } - - if(!$('#raw'+this.target+'FilterContainer').hasClass('invisible')) { - //Raw filter editing, i.e. user defined filter, don't compose - return; - } - - var param = 'action='+action+ - '&ldap_serverconfig_chooser='+ - encodeURIComponent($('#ldap_serverconfig_chooser').val()); - - var filter = this; - - LdapWizard.ajax(param, - function(result) { - LdapWizard.applyChanges(result); - if(filter.target === 'User') { - LdapWizard.countUsers(); - } else if(filter.target === 'Group') { - LdapWizard.countGroups(); - LdapWizard.detectGroupMemberAssoc(); - } - }, - function (result) { - // error handling - } - ); -} - -LdapFilter.prototype.determineMode = function() { - var param = 'action=get'+encodeURIComponent(this.target)+'FilterMode'+ - '&ldap_serverconfig_chooser='+ - encodeURIComponent($('#ldap_serverconfig_chooser').val()); - - var filter = this; - LdapWizard.ajax(param, - function(result) { - property = 'ldap' + filter.target + 'FilterMode'; - filter.mode = result.changes[property]; - if(filter.mode == LdapWizard.filterModeRaw - && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+filter.target+'Filter'](); - } else if(filter.mode == LdapWizard.filterModeAssisted - && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+filter.target+'Filter'](); - } - filter.unlock(); - }, - function (result) { - //on error case get back to default i.e. Assisted - if(!$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+filter.target+'Filter'](); - filter.mode = LdapWizard.filterModeAssisted; - } - filter.unlock(); - } - ); - -} - -LdapFilter.prototype.unlock = function() { - this.locked = false; - if(this.lazyRunCompose) { - this.lazyRunCompose = false; - this.compose(); - } -} - -// end of LdapFilter object. - - var LdapWizard = { checkPortInfoShown: false, saveBlacklist: {}, diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index d077eafdde..6b7d8e6f53 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -25,6 +25,7 @@ OC_Util::checkAdminUser(); +OCP\Util::addScript('user_ldap', 'ldapFilter'); OCP\Util::addScript('user_ldap', 'settings'); OCP\Util::addScript('core', 'jquery.multiselect'); OCP\Util::addStyle('user_ldap', 'settings'); -- GitLab From dde4f2f91720a5eb4ad7db4fdb15dfc115f0e8c0 Mon Sep 17 00:00:00 2001 From: adrien <adrien.waksberg@believedigital.com> Date: Thu, 6 Mar 2014 22:23:17 +0100 Subject: [PATCH 017/187] upgrade the cache user --- lib/private/user/database.php | 52 +++++++++++++++++++++++++---------- 1 file changed, 38 insertions(+), 14 deletions(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 911073c133..1e3d457eb5 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -39,13 +39,15 @@ require_once 'phpass/PasswordHash.php'; * Class for user management in a SQL Database (e.g. MySQL, SQLite) */ class OC_User_Database extends OC_User_Backend { + + protected static $cache = array(); + protected static $cache_complete = true; + /** * @var PasswordHash */ private static $hasher = null; - protected static $cache = array(); - private function getHasher() { if (!self::$hasher) { //we don't want to use DES based crypt(), since it doesn't return a hash with a recognisable prefix @@ -199,6 +201,7 @@ class OC_User_Database extends OC_User_Backend { /** * @brief Load an user in the cache + * @param string $uid the username * @returns boolean */ protected function loadUser($uid) { @@ -220,6 +223,32 @@ class OC_User_Database extends OC_User_Backend { return true; } + /** + * @brief Load an user in the cache + * @param string $uid the username + * @returns boolean + */ + protected function loadUsers() { + if (!self::$cache_complete) { + $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` ORDER BY `uid`'); + $result = $query->execute(array($uid)); + + if (OC_DB::isError($result)) { + OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); + return false; + } + + while ($row = $result->fetchRow()) { + self::$cache[$uid]['uid'] = $row['uid']; + self::$cache[$uid]['displayname'] = $row['displayname']; + } + + self::$cache_complete = true; + } + + return true; + } + /** * @brief Get a list of all users * @returns array with all uids @@ -227,12 +256,12 @@ class OC_User_Database extends OC_User_Backend { * Get a list of all users. */ public function getUsers($search = '', $limit = null, $offset = null) { - $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search . '%')); + $this->loadUsers(); + $users = array(); - while ($row = $result->fetchRow()) { - $users[] = $row['uid']; - } + foreach (self::$cache as $uid => $value) + $users[] = $uid; + return $users; } @@ -271,13 +300,8 @@ class OC_User_Database extends OC_User_Backend { * @return int | bool */ public function countUsers() { - $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`'); - $result = $query->execute(); - if (OC_DB::isError($result)) { - OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); - return false; - } - return $result->fetchOne(); + $this->loadUsers(); + return count(self::$cache); } } -- GitLab From 5cdfc56867d0fe8dc5be9e2112c53e3ddf212104 Mon Sep 17 00:00:00 2001 From: adrien <adrien.waksberg@believedigital.com> Date: Thu, 6 Mar 2014 22:34:43 +0100 Subject: [PATCH 018/187] update the cache when add user --- lib/private/user/database.php | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 1e3d457eb5..bbd72fc65e 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -39,15 +39,14 @@ require_once 'phpass/PasswordHash.php'; * Class for user management in a SQL Database (e.g. MySQL, SQLite) */ class OC_User_Database extends OC_User_Backend { - - protected static $cache = array(); - protected static $cache_complete = true; - /** * @var PasswordHash */ private static $hasher = null; + protected static $cache = array(); + protected static $cache_complete = false; + private function getHasher() { if (!self::$hasher) { //we don't want to use DES based crypt(), since it doesn't return a hash with a recognisable prefix @@ -68,16 +67,19 @@ class OC_User_Database extends OC_User_Backend { * itself, not in its subclasses. */ public function createUser($uid, $password) { - if ($this->userExists($uid)) { - return false; - } else { + if (!$this->userExists($uid)) { $hasher = $this->getHasher(); $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); $query = OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )'); $result = $query->execute(array($uid, $hash)); - - return $result ? true : false; + + if ($result) { + self::$cache[$uid]['uid'] = $uid; + return true; + } } + + return false; } /** @@ -127,10 +129,11 @@ class OC_User_Database extends OC_User_Backend { if ($this->userExists($uid)) { $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = ?'); $query->execute(array($displayName, $uid)); + self::$cache[$uid]['displayname'] = $displayName; return true; - } else { - return false; } + + return false; } /** @@ -140,8 +143,8 @@ class OC_User_Database extends OC_User_Backend { */ public function getDisplayName($uid) { $this->loadUser($uid); - if (!empty(self::$cache['uid']['displayname'])) { - return self::$cache['uid']['displayname']; + if (!empty(self::$cache[$uid]['displayname'])) { + return self::$cache[$uid]['displayname']; } else { return $uid; } -- GitLab From fbde24c89ae61294bb6327ccc2b5b150b2ec4928 Mon Sep 17 00:00:00 2001 From: adrien <adrien.waksberg@believedigital.com> Date: Fri, 7 Mar 2014 08:46:34 +0100 Subject: [PATCH 019/187] fix undefined in loadUsers --- lib/private/user/database.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index bbd72fc65e..80d52feffc 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -54,7 +54,6 @@ class OC_User_Database extends OC_User_Backend { self::$hasher = new PasswordHash(8, $forcePortable); } return self::$hasher; - } /** @@ -112,9 +111,9 @@ class OC_User_Database extends OC_User_Backend { $query->execute(array($hash, $uid)); return true; - } else { - return false; } + + return false; } /** @@ -188,8 +187,9 @@ class OC_User_Database extends OC_User_Backend { $storedHash = $row['password']; if ($storedHash[0] == '$') { //the new phpass based hashing $hasher = $this->getHasher(); - if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) + if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) { return $row['uid']; + } //old sha1 based hashing } elseif (sha1($password) == $storedHash) { @@ -234,7 +234,7 @@ class OC_User_Database extends OC_User_Backend { protected function loadUsers() { if (!self::$cache_complete) { $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` ORDER BY `uid`'); - $result = $query->execute(array($uid)); + $result = $query->execute(); if (OC_DB::isError($result)) { OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); @@ -262,8 +262,9 @@ class OC_User_Database extends OC_User_Backend { $this->loadUsers(); $users = array(); - foreach (self::$cache as $uid => $value) + foreach (self::$cache as $uid => $value) { $users[] = $uid; + } return $users; } @@ -281,11 +282,12 @@ class OC_User_Database extends OC_User_Backend { /** * @brief get the user's home directory * @param string $uid the username - * @return boolean + * @return string|false */ public function getHome($uid) { - if ($this->userExists($uid)) + if ($this->userExists($uid)) { return OC_Config::getValue("datadirectory", OC::$SERVERROOT . "/data") . '/' . $uid; + } return false; } -- GitLab From db6fb198fe7b8fa854050730b32d58d3787505b3 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Fri, 7 Mar 2014 14:27:23 +0100 Subject: [PATCH 020/187] don't throw errors in getType --- lib/private/files/fileinfo.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/private/files/fileinfo.php b/lib/private/files/fileinfo.php index 916346b608..26ea0aab56 100644 --- a/lib/private/files/fileinfo.php +++ b/lib/private/files/fileinfo.php @@ -53,6 +53,9 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { } public function offsetGet($offset) { + if ($offset === 'type') { + return $this->getType(); + } return $this->data[$offset]; } @@ -144,7 +147,7 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { * @return \OCP\Files\FileInfo::TYPE_FILE | \OCP\Files\FileInfo::TYPE_FOLDER */ public function getType() { - if ($this->data['type']) { + if (isset($this->data['type'])) { return $this->data['type']; } else { return $this->getMimetype() === 'httpd/unix-directory' ? self::TYPE_FOLDER : self::TYPE_FILE; -- GitLab From d8843f6cd3b37bc7e95b5baa437d7087b09fc6fd Mon Sep 17 00:00:00 2001 From: nishiki <nishiki@yaegashi.fr> Date: Sun, 9 Mar 2014 12:01:35 +0100 Subject: [PATCH 021/187] minor clean code --- lib/private/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 80d52feffc..c472c5445b 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -276,7 +276,7 @@ class OC_User_Database extends OC_User_Backend { */ public function userExists($uid) { $this->loadUser($uid); - return empty(self::$cache[$uid]) ? false : true; + return !empty(self::$cache[$uid]); } /** -- GitLab From 75011c2e09e2ee7e9c76a86e938c4d8656225352 Mon Sep 17 00:00:00 2001 From: nishiki <nishiki@yaegashi.fr> Date: Sun, 9 Mar 2014 12:22:47 +0100 Subject: [PATCH 022/187] add query result (boolean) for update or delete --- lib/private/user/database.php | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index c472c5445b..57ecdda9da 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -91,8 +91,9 @@ class OC_User_Database extends OC_User_Backend { public function deleteUser($uid) { // Delete user-group-relation $query = OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?'); - $query->execute(array($uid)); - return true; + $result = $query->execute(array($uid)); + + return $result ? true : false; } /** @@ -108,9 +109,9 @@ class OC_User_Database extends OC_User_Backend { $hasher = $this->getHasher(); $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `password` = ? WHERE `uid` = ?'); - $query->execute(array($hash, $uid)); + $result = $query->execute(array($hash, $uid)); - return true; + return $result ? true : false; } return false; @@ -142,11 +143,7 @@ class OC_User_Database extends OC_User_Backend { */ public function getDisplayName($uid) { $this->loadUser($uid); - if (!empty(self::$cache[$uid]['displayname'])) { - return self::$cache[$uid]['displayname']; - } else { - return $uid; - } + return empty(self::$cache[$uid]['displayname']) ? $uid : self::$cache[$uid]['displayname']; } /** -- GitLab From ba9d8f7c1a448e0a769ee31d20ee75c1616b22e7 Mon Sep 17 00:00:00 2001 From: nishiki <nishiki@yaegashi.fr> Date: Sun, 9 Mar 2014 12:47:19 +0100 Subject: [PATCH 023/187] fix undifined uid --- lib/private/user/database.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 57ecdda9da..591ea2a5c9 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -239,7 +239,8 @@ class OC_User_Database extends OC_User_Backend { } while ($row = $result->fetchRow()) { - self::$cache[$uid]['uid'] = $row['uid']; + $uid = $row['uid']; + self::$cache[$uid]['uid'] = $uid; self::$cache[$uid]['displayname'] = $row['displayname']; } -- GitLab From 415b1d03bca12c082ff70e44d3b7b8b3fbc8f347 Mon Sep 17 00:00:00 2001 From: adrien <adrien.waksberg@believedigital.com> Date: Mon, 10 Mar 2014 17:27:51 +0100 Subject: [PATCH 024/187] fix cache when remove an user --- lib/private/user/database.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 591ea2a5c9..4a9ad1b825 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -93,7 +93,14 @@ class OC_User_Database extends OC_User_Backend { $query = OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?'); $result = $query->execute(array($uid)); - return $result ? true : false; + if ($result) { + if (isset(self::$cache[$uid])) { + unset(self::$cache[$uid]); + } + return true; + } + + return false; } /** -- GitLab From f827761e7111d4f3b082074facef31efd74939e7 Mon Sep 17 00:00:00 2001 From: adrien <adrien.waksberg@believedigital.com> Date: Tue, 11 Mar 2014 11:56:46 +0100 Subject: [PATCH 025/187] remove static variable, add limit and offset --- lib/private/user/database.php | 80 ++++++++++++++++++++++------------- 1 file changed, 51 insertions(+), 29 deletions(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 4a9ad1b825..5df9c9e2b4 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -44,8 +44,8 @@ class OC_User_Database extends OC_User_Backend { */ private static $hasher = null; - protected static $cache = array(); - protected static $cache_complete = false; + private $cache = array(); + private $cache_complete = false; private function getHasher() { if (!self::$hasher) { @@ -73,7 +73,7 @@ class OC_User_Database extends OC_User_Backend { $result = $query->execute(array($uid, $hash)); if ($result) { - self::$cache[$uid]['uid'] = $uid; + $this->cache[$uid]['uid'] = $uid; return true; } } @@ -94,8 +94,8 @@ class OC_User_Database extends OC_User_Backend { $result = $query->execute(array($uid)); if ($result) { - if (isset(self::$cache[$uid])) { - unset(self::$cache[$uid]); + if (isset($this->cache[$uid])) { + unset($this->cache[$uid]); } return true; } @@ -136,7 +136,8 @@ class OC_User_Database extends OC_User_Backend { if ($this->userExists($uid)) { $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = ?'); $query->execute(array($displayName, $uid)); - self::$cache[$uid]['displayname'] = $displayName; + $this->cache[$uid]['displayname'] = $displayName; + return true; } @@ -150,7 +151,7 @@ class OC_User_Database extends OC_User_Backend { */ public function getDisplayName($uid) { $this->loadUser($uid); - return empty(self::$cache[$uid]['displayname']) ? $uid : self::$cache[$uid]['displayname']; + return empty($this->cache[$uid]['displayname']) ? $uid : $this->cache[$uid]['displayname']; } /** @@ -159,15 +160,24 @@ class OC_User_Database extends OC_User_Backend { * * Get a list of all display names and user ids. */ - public function getDisplayNames($search = '', $limit = null, $offset = null) { + public function getDisplayNames($search = '', $limit = null, $offset = 0) { + $this->loadUsers(); + + $search = strtolower($search); + $i = 0; + $displayNames = array(); - $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' - . ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' - . 'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search . '%', $search . '%')); - $users = array(); - while ($row = $result->fetchRow()) { - $displayNames[$row['uid']] = $row['displayname']; + foreach ($this->cache as $uid => $value) { + if ((preg_match('/^.*'.$search.'.*/', strtolower($uid)) || preg_match('/^.*'.$search.'.*/', strtolower($value['displayname']))) && $offset <= $i) { + $displayNames[$uid] = $value['displayname']; + if (!is_null($limit)) { + $limit--; + if ($limit <= 0) { + break; + } + } + } + $i++; } return $displayNames; @@ -211,8 +221,8 @@ class OC_User_Database extends OC_User_Backend { * @param string $uid the username * @returns boolean */ - protected function loadUser($uid) { - if (empty(self::$cache[$uid])) { + private function loadUser($uid) { + if (empty($this->cache[$uid])) { $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); $result = $query->execute(array($uid)); @@ -222,8 +232,8 @@ class OC_User_Database extends OC_User_Backend { } while ($row = $result->fetchRow()) { - self::$cache[$uid]['uid'] = $row['uid']; - self::$cache[$uid]['displayname'] = $row['displayname']; + $this->cache[$uid]['uid'] = $row['uid']; + $this->cache[$uid]['displayname'] = $row['displayname']; } } @@ -235,8 +245,8 @@ class OC_User_Database extends OC_User_Backend { * @param string $uid the username * @returns boolean */ - protected function loadUsers() { - if (!self::$cache_complete) { + private function loadUsers() { + if (!$this->cache_complete) { $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` ORDER BY `uid`'); $result = $query->execute(); @@ -247,11 +257,11 @@ class OC_User_Database extends OC_User_Backend { while ($row = $result->fetchRow()) { $uid = $row['uid']; - self::$cache[$uid]['uid'] = $uid; - self::$cache[$uid]['displayname'] = $row['displayname']; + $this->cache[$uid]['uid'] = $uid; + $this->cache[$uid]['displayname'] = $row['displayname']; } - self::$cache_complete = true; + $this->cache_complete = true; } return true; @@ -263,12 +273,24 @@ class OC_User_Database extends OC_User_Backend { * * Get a list of all users. */ - public function getUsers($search = '', $limit = null, $offset = null) { + public function getUsers($search = '', $limit = null, $offset = 0) { $this->loadUsers(); + $search = strtolower($search); + $i = 0; + $users = array(); - foreach (self::$cache as $uid => $value) { - $users[] = $uid; + foreach ($this->cache as $uid => $value) { + if (preg_match('/^'.$search.'.*/', strtolower($uid)) && $offset <= $i) { + $users[] = $uid; + if (!is_null($limit)) { + $limit--; + if ($limit <= 0) { + break; + } + } + } + $i++; } return $users; @@ -281,7 +303,7 @@ class OC_User_Database extends OC_User_Backend { */ public function userExists($uid) { $this->loadUser($uid); - return !empty(self::$cache[$uid]); + return !empty($this->cache[$uid]); } /** @@ -311,7 +333,7 @@ class OC_User_Database extends OC_User_Backend { */ public function countUsers() { $this->loadUsers(); - return count(self::$cache); + return count($this->cache); } } -- GitLab From ea6f8ba352ac7b3c9069407d6f64664ddee81c4d Mon Sep 17 00:00:00 2001 From: adrien <adrien.waksberg@believedigital.com> Date: Tue, 11 Mar 2014 16:58:10 +0100 Subject: [PATCH 026/187] fix remove cache when delete --- lib/private/user/database.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 5df9c9e2b4..683ba90e55 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -93,14 +93,11 @@ class OC_User_Database extends OC_User_Backend { $query = OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?'); $result = $query->execute(array($uid)); - if ($result) { - if (isset($this->cache[$uid])) { - unset($this->cache[$uid]); - } - return true; + if (isset($this->cache[$uid])) { + unset($this->cache[$uid]); } - return false; + return $result ? true : false; } /** -- GitLab From 8a8a32cf43efad6fdb2089097cb7fadbe0472456 Mon Sep 17 00:00:00 2001 From: ben-denham <bend@catalyst.net.nz> Date: Fri, 14 Mar 2014 09:17:39 +1300 Subject: [PATCH 027/187] Changed conditions in user_ldap's ldapFilter.js to use ===, fixed indentation. --- apps/user_ldap/js/ldapFilter.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index 71f8cd6c7c..70f24f0d4a 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -65,10 +65,10 @@ LdapFilter.prototype.determineMode = function() { function(result) { property = 'ldap' + filter.target + 'FilterMode'; filter.mode = result.changes[property]; - if(filter.mode == LdapWizard.filterModeRaw + if(filter.mode === LdapWizard.filterModeRaw && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); - } else if(filter.mode == LdapWizard.filterModeAssisted + } else if(filter.mode === LdapWizard.filterModeAssisted && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); } @@ -80,7 +80,7 @@ LdapFilter.prototype.determineMode = function() { LdapWizard['toggleRaw'+filter.target+'Filter'](); filter.mode = LdapWizard.filterModeAssisted; } - filter.unlock(); + filter.unlock(); } ); -- GitLab From 0da61a26ee842e611f33d32109572c70bbc170b1 Mon Sep 17 00:00:00 2001 From: adrien <adrien.waksberg@believedigital.com> Date: Fri, 21 Mar 2014 15:50:25 +0100 Subject: [PATCH 028/187] remove cache all user --- lib/private/user/database.php | 92 +++++++++-------------------------- 1 file changed, 22 insertions(+), 70 deletions(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 683ba90e55..706982bb75 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -45,7 +45,6 @@ class OC_User_Database extends OC_User_Backend { private static $hasher = null; private $cache = array(); - private $cache_complete = false; private function getHasher() { if (!self::$hasher) { @@ -71,11 +70,8 @@ class OC_User_Database extends OC_User_Backend { $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); $query = OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )'); $result = $query->execute(array($uid, $hash)); - - if ($result) { - $this->cache[$uid]['uid'] = $uid; - return true; - } + + return $result ? true : false; } return false; @@ -157,24 +153,15 @@ class OC_User_Database extends OC_User_Backend { * * Get a list of all display names and user ids. */ - public function getDisplayNames($search = '', $limit = null, $offset = 0) { - $this->loadUsers(); - - $search = strtolower($search); - $i = 0; - + public function getDisplayNames($search = '', $limit = null, $offset = null) { $displayNames = array(); - foreach ($this->cache as $uid => $value) { - if ((preg_match('/^.*'.$search.'.*/', strtolower($uid)) || preg_match('/^.*'.$search.'.*/', strtolower($value['displayname']))) && $offset <= $i) { - $displayNames[$uid] = $value['displayname']; - if (!is_null($limit)) { - $limit--; - if ($limit <= 0) { - break; - } - } - } - $i++; + $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' + . ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' + . 'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + $result = $query->execute(array($search . '%', $search . '%')); + $users = array(); + while ($row = $result->fetchRow()) { + $displayNames[$row['uid']] = $row['displayname']; } return $displayNames; @@ -237,59 +224,19 @@ class OC_User_Database extends OC_User_Backend { return true; } - /** - * @brief Load an user in the cache - * @param string $uid the username - * @returns boolean - */ - private function loadUsers() { - if (!$this->cache_complete) { - $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` ORDER BY `uid`'); - $result = $query->execute(); - - if (OC_DB::isError($result)) { - OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); - return false; - } - - while ($row = $result->fetchRow()) { - $uid = $row['uid']; - $this->cache[$uid]['uid'] = $uid; - $this->cache[$uid]['displayname'] = $row['displayname']; - } - - $this->cache_complete = true; - } - - return true; - } - /** * @brief Get a list of all users * @returns array with all uids * * Get a list of all users. */ - public function getUsers($search = '', $limit = null, $offset = 0) { - $this->loadUsers(); - - $search = strtolower($search); - $i = 0; - + public function getUsers($search = '', $limit = null, $offset = null) { + $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + $result = $query->execute(array($search . '%')); $users = array(); - foreach ($this->cache as $uid => $value) { - if (preg_match('/^'.$search.'.*/', strtolower($uid)) && $offset <= $i) { - $users[] = $uid; - if (!is_null($limit)) { - $limit--; - if ($limit <= 0) { - break; - } - } - } - $i++; + while ($row = $result->fetchRow()) { + $users[] = $row['uid']; } - return $users; } @@ -329,8 +276,13 @@ class OC_User_Database extends OC_User_Backend { * @return int | bool */ public function countUsers() { - $this->loadUsers(); - return count($this->cache); + $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`'); + $result = $query->execute(); + if (OC_DB::isError($result)) { + OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); + return false; + } + return $result->fetchOne(); } } -- GitLab From 9c8596e95b81f9d5ddcd7132ac0134b0ffed67e5 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Tue, 1 Apr 2014 15:43:27 +0200 Subject: [PATCH 029/187] Keep cached urls with different hostnames or baseurls seperate --- lib/private/route/cachingrouter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php index ad25372391..63bfd3e053 100644 --- a/lib/private/route/cachingrouter.php +++ b/lib/private/route/cachingrouter.php @@ -31,7 +31,7 @@ class CachingRouter extends Router { * @return string */ public function generate($name, $parameters = array(), $absolute = false) { - $key = $name . json_encode($parameters) . $absolute; + $key = $this->context->getHost() . $this->context->getBaseUrl() . $name . json_encode($parameters) . $absolute; if ($this->cache->hasKey($key)) { return $this->cache->get($key); } else { -- GitLab From c926e98ea96f4782bc75b97e4db5996dacd6e0d4 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Tue, 1 Apr 2014 17:18:03 +0200 Subject: [PATCH 030/187] fix log in input sizing caused by core input field switch to px --- core/css/styles.css | 42 +++++++++++++++++++++++++++++++----------- 1 file changed, 31 insertions(+), 11 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 8a12057529..f750c72077 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -402,14 +402,32 @@ input[type="submit"].enabled { } /* Icons for username and password fields to better recognize them */ -#adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; } -#adminlogin+label+img, #adminpass-icon, #user+label+img, #password-icon { - position:absolute; left:1.25em; top:1.65em; - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; filter:alpha(opacity=30); opacity:.3; +#adminlogin, #adminpass, #user, #password { + width: 223px !important; + padding-left: 36px !important; +} +#adminlogin+label+img, +#adminpass-icon, +#user+label+img, +#password-icon { + position: absolute; + left: 1.25em; + top: 1.65em; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; + filter: alpha(opacity=30); + opacity: .3; +} +#adminpass-icon, #password-icon { + top: 1.1em; +} +input[name="password-clone"] { + padding-left: 1.8em; + width: 11.7em !important; +} +input[name="adminpass-clone"] { + padding-left: 1.8em; + width: 11.7em !important; } -#adminpass-icon, #password-icon { top:1.1em; } -input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } -input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; } /* General new input field look */ #body-login input[type="text"], @@ -456,7 +474,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form input[type="checkbox"]+label { position: relative; margin: 0; - font-size: 1em; + font-size: 13px; padding: 14px; padding-left: 28px; margin-left: -28px; @@ -610,11 +628,13 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } /* Log in and install button */ #body-login input { - font-size: 1.5em; + font-size: 20px; + margin: 5px; + padding: 12px 10px 8px; } #body-login input[type="text"], #body-login input[type="password"] { - width: 13em; + width: 249px; } #body-login input.login { width: auto; @@ -624,7 +644,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } padding: 10px 20px; /* larger log in and installation buttons */ } #remember_login { - margin: 18px 5px 0 18px; + margin: 24px 5px 0 16px !important; vertical-align: text-bottom; } -- GitLab From 0c441724bc3031e50715169e9fd5541b347b2878 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Tue, 1 Apr 2014 17:21:05 +0200 Subject: [PATCH 031/187] make infield labels use less space so pasting in is easier --- core/css/styles.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index f750c72077..7af80e31ff 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -466,9 +466,14 @@ input[name="adminpass-clone"] { p.infield { position:relative; } label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form label.infield { /* labels are ellipsized when too long, keep them short */ - position:absolute; width:90%; padding-left:1.4em; - font-size:19px; color:#aaa; - white-space:nowrap; overflow:hidden; text-overflow:ellipsis; + position: absolute; + width: auto; + margin-left: 26px; + font-size: 19px; + color: #aaa; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } #body-login #databaseField .infield { padding-left:0; } #body-login form input[type="checkbox"]+label { -- GitLab From 51fbf0bcbc2c3c68f7b4b36128304f4ab9df98e7 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Mon, 7 Apr 2014 13:27:18 +0200 Subject: [PATCH 032/187] add delimiter between host and baseurl --- lib/private/route/cachingrouter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php index 63bfd3e053..766c67c73a 100644 --- a/lib/private/route/cachingrouter.php +++ b/lib/private/route/cachingrouter.php @@ -31,7 +31,7 @@ class CachingRouter extends Router { * @return string */ public function generate($name, $parameters = array(), $absolute = false) { - $key = $this->context->getHost() . $this->context->getBaseUrl() . $name . json_encode($parameters) . $absolute; + $key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . json_encode($parameters) . $absolute; if ($this->cache->hasKey($key)) { return $this->cache->get($key); } else { -- GitLab From 6d373e97c32ec51bd649eeafdfcc3596067776f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Mon, 7 Apr 2014 23:02:49 +0200 Subject: [PATCH 033/187] remove unused exit() --- apps/files/ajax/upload.php | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 38175fa500..a5ce7b257d 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -196,7 +196,6 @@ if (strpos($dir, '..') === false) { if ($error === false) { OCP\JSON::encodedPrint($result); - exit(); } else { OCP\JSON::error(array(array('data' => array_merge(array('message' => $error, 'code' => $errorCode), $storageStats)))); } -- GitLab From 971a311feec6c4c2de905bdbbe71c2cf60296cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Mon, 7 Apr 2014 23:03:19 +0200 Subject: [PATCH 034/187] adding parentId to file info array --- apps/files/lib/helper.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index b765fdaf3e..f9515d6715 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -73,13 +73,14 @@ class Helper /** * Formats the file info to be returned as JSON to the client. * - * @param \OCP\Files\FileInfo file info + * @param \OCP\Files\FileInfo $i * @return array formatted file info */ public static function formatFileInfo($i) { $entry = array(); $entry['id'] = $i['fileid']; + $entry['parentId'] = $i['parent']; $entry['date'] = \OCP\Util::formatDate($i['mtime']); $entry['mtime'] = $i['mtime'] * 1000; // only pick out the needed attributes -- GitLab From d15a4719d2bc58827d7cbe616ab25aaf376c8293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Mon, 7 Apr 2014 23:04:08 +0200 Subject: [PATCH 035/187] fix folder upload in js --- apps/files/js/filelist.js | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 69c97e8b32..4a59508330 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1103,33 +1103,38 @@ $(document).ready(function() { size += parseInt(file.size); data.context.attr('data-size', size); data.context.find('td.filesize').text(humanFileSize(size)); - } - else { + } else { // only append new file if uploaded into the current folder - if (file.directory != '/' && file.directory !== FileList.getCurrentDirectory()) { + if (file.directory !== '/' && file.directory !== FileList.getCurrentDirectory()) { - file_directory = file.directory.replace('/','').replace(/\/$/, "").split('/'); + var fileDirectory = file.directory.replace('/','').replace(/\/$/, "").split('/'); - if (file_directory.length == 1) { - file_directory = file_directory[0]; + if (fileDirectory.length === 1) { + fileDirectory = fileDirectory[0]; // Get the directory - if ($('tr[data-file="'+file_directory+'"]').length == 0) - { - FileList.addDir(file_directory, 0, new Date(), false); + if ($('tr[data-file="'+fileDirectory+'"]').length === 0) { + var dir = { + name: fileDirectory, + type: 'dir', + mimetype: 'httpd/unix-directory', + permissions: file.permissions, + size: 0, + id: file.parentId + }; + FileList.add(dir, {insert: true}); } - } - else { - file_directory = file_directory[0]; + } else { + fileDirectory = fileDirectory[0]; } - file_directory = FileList.findFileEl(file_directory); + fileDirectory = FileList.findFileEl(fileDirectory); // update folder size - var size = parseInt(file_directory.attr('data-size')); + var size = parseInt(fileDirectory.attr('data-size')); size += parseInt(file.size); - file_directory.attr('data-size', size); - file_directory.find('td.filesize').text(humanFileSize(size)); + fileDirectory.attr('data-size', size); + fileDirectory.find('td.filesize').text(humanFileSize(size)); return; } -- GitLab From 7dd00746556aa4be26e41a6f3b66095a29b02c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Mon, 7 Apr 2014 23:17:35 +0200 Subject: [PATCH 036/187] fixing mkdir code to respect external file systems as well --- lib/private/files/view.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 0dce90aec4..519ed250b1 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -633,11 +633,11 @@ class View { if (Filesystem::isValidPath($path)) { // Get directory that the file is going into - $file_path = \OC_User::getHome(\OC_User::getUser()) . '/files'.substr($path, 0, strrpos($path,'/')); + $filePath = dirname($path); // Create the directories if any - if(empty($file_path) === false) { - mkdir($file_path, 0770, true); + if (!$this->file_exists($filePath)) { + $this->mkdir($filePath); } if (!$tmpFile) { -- GitLab From 68b7822cf50a670619659ae2082633f4c62fb5f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Mon, 7 Apr 2014 23:45:35 +0200 Subject: [PATCH 037/187] js style fixes according to our jshintrc rules --- apps/files/js/filelist.js | 114 +++++++++++++++++++------------------- 1 file changed, 56 insertions(+), 58 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 4a59508330..ceaaed264a 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -9,7 +9,7 @@ */ /* global OC, t, n, FileList, FileActions, Files, BreadCrumb */ -/* global procesSelection, dragOptions, SVGSupport */ +/* global procesSelection, dragOptions, folderDropOptions, SVGSupport */ window.FileList = { appName: t('files', 'Files'), isEmpty: true, @@ -228,7 +228,7 @@ window.FileList = { linkUrl = Files.getDownloadUrl(name, FileList.getCurrentDirectory()); } td.append('<input id="select-' + fileData.id + '" type="checkbox" /><label for="select-' + fileData.id + '"></label>'); - var link_elem = $('<a></a>').attr({ + var linkElem = $('<a></a>').attr({ "class": "name", "href": linkUrl }); @@ -244,19 +244,19 @@ window.FileList = { basename = name; extension = false; } - var name_span=$('<span></span>').addClass('nametext').text(basename); - link_elem.append(name_span); + var nameSpan=$('<span></span>').addClass('nametext').text(basename); + linkElem.append(nameSpan); if (extension) { - name_span.append($('<span></span>').addClass('extension').text(extension)); + nameSpan.append($('<span></span>').addClass('extension').text(extension)); } // dirs can show the number of uploaded files if (type === 'dir') { - link_elem.append($('<span></span>').attr({ + linkElem.append($('<span></span>').attr({ 'class': 'uploadtext', 'currentUploads': 0 })); } - td.append(link_elem); + td.append(linkElem); tr.append(td); // size column @@ -266,7 +266,7 @@ window.FileList = { } else { simpleSize = t('files', 'Pending'); } - var lastModifiedTime = Math.round(mtime / 1000); + td = $('<td></td>').attr({ "class": "filesize", "style": 'color:rgb(' + sizeColor + ',' + sizeColor + ',' + sizeColor + ')' @@ -453,8 +453,6 @@ window.FileList = { }); }, reloadCallback: function(result) { - var $controls = $('#controls'); - delete this._reloadCall; this.hideMask(); @@ -822,10 +820,9 @@ window.FileList = { var info = t('files', '{dirs} and {files}', infoVars); // don't show the filesize column, if filesize is NaN (e.g. in trashbin) - if (isNaN(summary.totalSize)) { - var fileSize = ''; - } else { - var fileSize = '<td class="filesize">'+humanFileSize(summary.totalSize)+'</td>'; + var fileSize = ''; + if (!isNaN(summary.totalSize)) { + fileSize = '<td class="filesize">'+humanFileSize(summary.totalSize)+'</td>'; } var $summary = $('<tr class="summary" data-file="undefined"><td><span class="info">'+info+'</span></td>'+fileSize+'<td></td></tr>'); @@ -911,7 +908,6 @@ window.FileList = { } }, updateEmptyContent: function() { - var $fileList = $('#fileList'); var permissions = $('#permissions').val(); var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; $('#emptycontent').toggleClass('hidden', !isCreatable || !FileList.isEmpty); @@ -949,13 +945,13 @@ window.FileList = { }, scrollTo:function(file) { //scroll to and highlight preselected file - var $scrolltorow = FileList.findFileEl(file); - if ($scrolltorow.exists()) { - $scrolltorow.addClass('searchresult'); - $(window).scrollTop($scrolltorow.position().top); + var $scrollToRow = FileList.findFileEl(file); + if ($scrollToRow.exists()) { + $scrollToRow.addClass('searchresult'); + $(window).scrollTop($scrollToRow.position().top); //remove highlight when hovered over - $scrolltorow.one('hover', function() { - $scrolltorow.removeClass('searchresult'); + $scrollToRow.one('hover', function() { + $scrollToRow.removeClass('searchresult'); }); } }, @@ -991,9 +987,9 @@ $(document).ready(function() { FileList.initialize(); // handle upload events - var file_upload_start = $('#file_upload_start'); + var fileUploadStart = $('#file_upload_start'); - file_upload_start.on('fileuploaddrop', function(e, data) { + fileUploadStart.on('fileuploaddrop', function(e, data) { OC.Upload.log('filelist handle fileuploaddrop', e, data); var dropTarget = $(e.originalEvent.target).closest('tr, .crumb'); @@ -1021,7 +1017,7 @@ $(document).ready(function() { return [ {name: 'dir', value: dir}, {name: 'requesttoken', value: oc_requesttoken}, - {name: 'file_directory', value: data.files[0]['relativePath']} + {name: 'file_directory', value: data.files[0].relativePath} ]; }; } else { @@ -1032,7 +1028,7 @@ $(document).ready(function() { } } }); - file_upload_start.on('fileuploadadd', function(e, data) { + fileUploadStart.on('fileuploadadd', function(e, data) { OC.Upload.log('filelist handle fileuploadadd', e, data); //finish delete if we are uploading a deleted file @@ -1045,19 +1041,19 @@ $(document).ready(function() { // add to existing folder // update upload counter ui - var uploadtext = data.context.find('.uploadtext'); - var currentUploads = parseInt(uploadtext.attr('currentUploads')); + var uploadText = data.context.find('.uploadtext'); + var currentUploads = parseInt(uploadText.attr('currentUploads'), 10); currentUploads += 1; - uploadtext.attr('currentUploads', currentUploads); + uploadText.attr('currentUploads', currentUploads); var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads); if (currentUploads === 1) { var img = OC.imagePath('core', 'loading.gif'); data.context.find('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.text(translatedText); - uploadtext.show(); + uploadText.text(translatedText); + uploadText.show(); } else { - uploadtext.text(translatedText); + uploadText.text(translatedText); } } @@ -1066,7 +1062,7 @@ $(document).ready(function() { * when file upload done successfully add row to filelist * update counter when uploading to sub folder */ - file_upload_start.on('fileuploaddone', function(e, data) { + fileUploadStart.on('fileuploaddone', function(e, data) { OC.Upload.log('filelist handle fileuploaddone', e, data); var response; @@ -1080,27 +1076,28 @@ $(document).ready(function() { if (typeof result[0] !== 'undefined' && result[0].status === 'success') { var file = result[0]; + var size = 0; if (data.context && data.context.data('type') === 'dir') { // update upload counter ui - var uploadtext = data.context.find('.uploadtext'); - var currentUploads = parseInt(uploadtext.attr('currentUploads')); + var uploadText = data.context.find('.uploadtext'); + var currentUploads = parseInt(uploadText.attr('currentUploads'), 10); currentUploads -= 1; - uploadtext.attr('currentUploads', currentUploads); + uploadText.attr('currentUploads', currentUploads); var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads); if (currentUploads === 0) { var img = OC.imagePath('core', 'filetypes/folder'); data.context.find('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.text(translatedText); - uploadtext.hide(); + uploadText.text(translatedText); + uploadText.hide(); } else { - uploadtext.text(translatedText); + uploadText.text(translatedText); } // update folder size - var size = parseInt(data.context.data('size')); - size += parseInt(file.size); + size = parseInt(data.context.data('size'), 10); + size += parseInt(file.size, 10); data.context.attr('data-size', size); data.context.find('td.filesize').text(humanFileSize(size)); } else { @@ -1131,8 +1128,8 @@ $(document).ready(function() { fileDirectory = FileList.findFileEl(fileDirectory); // update folder size - var size = parseInt(fileDirectory.attr('data-size')); - size += parseInt(file.size); + size = parseInt(fileDirectory.attr('data-size'), 10); + size += parseInt(file.size, 10); fileDirectory.attr('data-size', size); fileDirectory.find('td.filesize').text(humanFileSize(size)); @@ -1140,7 +1137,7 @@ $(document).ready(function() { } // add as stand-alone row to filelist - var size=t('files', 'Pending'); + size = t('files', 'Pending'); if (data.files[0].size>=0) { size=data.files[0].size; } @@ -1152,37 +1149,40 @@ $(document).ready(function() { } } }); - file_upload_start.on('fileuploadstop', function(e, data) { + fileUploadStart.on('fileuploadstop', function(e, data) { OC.Upload.log('filelist handle fileuploadstop', e, data); //if user pressed cancel hide upload chrome if (data.errorThrown === 'abort') { //cleanup uploading to a dir - var uploadtext = $('tr .uploadtext'); + var uploadText = $('tr .uploadtext'); var img = OC.imagePath('core', 'filetypes/folder'); - uploadtext.parents('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.fadeOut(); - uploadtext.attr('currentUploads', 0); + uploadText.parents('td.filename').attr('style','background-image:url('+img+')'); + uploadText.fadeOut(); + uploadText.attr('currentUploads', 0); } }); - file_upload_start.on('fileuploadfail', function(e, data) { + fileUploadStart.on('fileuploadfail', function(e, data) { OC.Upload.log('filelist handle fileuploadfail', e, data); //if user pressed cancel hide upload chrome if (data.errorThrown === 'abort') { //cleanup uploading to a dir - var uploadtext = $('tr .uploadtext'); + var uploadText = $('tr .uploadtext'); var img = OC.imagePath('core', 'filetypes/folder'); - uploadtext.parents('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.fadeOut(); - uploadtext.attr('currentUploads', 0); + uploadText.parents('td.filename').attr('style','background-image:url('+img+')'); + uploadText.fadeOut(); + uploadText.attr('currentUploads', 0); } }); $('#notification').hide(); $('#notification:first-child').on('click', '.replace', function() { OC.Notification.hide(function() { - FileList.replace($('#notification > span').attr('data-oldName'), $('#notification > span').attr('data-newName'), $('#notification > span').attr('data-isNewFile')); + FileList.replace( + $('#notification > span').attr('data-oldName'), + $('#notification > span').attr('data-newName'), + $('#notification > span').attr('data-isNewFile')); }); }); $('#notification:first-child').on('click', '.suggest', function() { @@ -1212,8 +1212,7 @@ $(document).ready(function() { function parseHashQuery() { var hash = window.location.hash, - pos = hash.indexOf('?'), - query; + pos = hash.indexOf('?'); if (pos >= 0) { return hash.substr(pos + 1); } @@ -1222,8 +1221,7 @@ $(document).ready(function() { function parseCurrentDirFromUrl() { var query = parseHashQuery(), - params, - dir = '/'; + params; // try and parse from URL hash first if (query) { params = OC.parseQueryString(decodeQuery(query)); -- GitLab From 8bb27551bde2d5aa516f4df2918ca3ed0ccd18b0 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Thu, 20 Mar 2014 00:21:14 +0100 Subject: [PATCH 038/187] LDAP: make sure cache key for paged result cookie matches when limit or offset is null or 0 --- apps/user_ldap/lib/access.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 4d187bab8d..b8e7e9bb67 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -1184,7 +1184,7 @@ class Access extends LDAPUtility { } $offset -= $limit; //we work with cache here - $cachekey = 'lc' . crc32($base) . '-' . crc32($filter) . '-' . $limit . '-' . $offset; + $cachekey = 'lc' . crc32($base) . '-' . crc32($filter) . '-' . intval($limit) . '-' . intval($offset); $cookie = ''; if(isset($this->cookies[$cachekey])) { $cookie = $this->cookies[$cachekey]; @@ -1206,7 +1206,7 @@ class Access extends LDAPUtility { */ private function setPagedResultCookie($base, $filter, $limit, $offset, $cookie) { if(!empty($cookie)) { - $cachekey = 'lc' . crc32($base) . '-' . crc32($filter) . '-' .$limit . '-' . $offset; + $cachekey = 'lc' . crc32($base) . '-' . crc32($filter) . '-' .intval($limit) . '-' . intval($offset); $this->cookies[$cachekey] = $cookie; } } -- GitLab From 40f9875f11e1bd35dd96ebd8fc8cf718be49689c Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Thu, 20 Mar 2014 00:21:51 +0100 Subject: [PATCH 039/187] LDAP: fix user report i.e. count for LDAP servers with really many users --- apps/user_ldap/lib/access.php | 38 +++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index b8e7e9bb67..7640a5b1bc 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -659,7 +659,7 @@ class Access extends LDAPUtility { * @param string $filter */ public function countUsers($filter, $attr = array('dn'), $limit = null, $offset = null) { - return $this->count($filter, $this->connection->ldapBaseGroups, $attr, $limit, $offset); + return $this->count($filter, $this->connection->ldapBaseUsers, $attr, $limit, $offset); } /** @@ -775,22 +775,34 @@ class Access extends LDAPUtility { */ private function count($filter, $base, $attr = null, $limit = null, $offset = null, $skipHandling = false) { \OCP\Util::writeLog('user_ldap', 'Count filter: '.print_r($filter, true), \OCP\Util::DEBUG); - $search = $this->executeSearch($filter, $base, $attr, $limit, $offset); - if($search === false) { - return false; + + if(is_null($limit)) { + //TODO replace 400 with $this->connection->ldapPagingSize; once PR 6221 is merged and move it to callee countUsers() + $limit = 400; } - list($sr, $pagedSearchOK) = $search; - $cr = $this->connection->getConnectionResource(); + $counter = 0; - foreach($sr as $key => $res) { - $count = $this->ldap->countEntries($cr, $res); - if($count !== false) { - $counter += $count; + $cr = $this->connection->getConnectionResource(); + + do { + $search = $this->executeSearch($filter, $base, $attr, + $limit, $offset); + if($search === false) { + return $counter > 0 ? $counter : false; + } + list($sr, $pagedSearchOK) = $search; + + foreach($sr as $key => $res) { + $count = $this->ldap->countEntries($cr, $res); + if($count !== false) { + $counter += $count; + } } - } - $this->processPagedSearchStatus($sr, $filter, $base, $counter, $limit, + $this->processPagedSearchStatus($sr, $filter, $base, $count, $limit, $offset, $pagedSearchOK, $skipHandling); + $offset += $limit; + } while($count === $limit); return $counter; } @@ -891,7 +903,7 @@ class Access extends LDAPUtility { //we slice the findings, when //a) paged search insuccessful, though attempted //b) no paged search, but limit set - if((!$this->pagedSearchedSuccessful + if((!$this->getPagedSearchResultState() && $pagedSearchOK) || ( !$pagedSearchOK -- GitLab From 43402c56ddbe5e4041fdcdc0605d16badeadb69b Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Thu, 20 Mar 2014 09:14:41 +0100 Subject: [PATCH 040/187] initialize variable --- apps/user_ldap/lib/access.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 7640a5b1bc..1af993677c 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -782,6 +782,7 @@ class Access extends LDAPUtility { } $counter = 0; + $count = null; $cr = $this->connection->getConnectionResource(); do { -- GitLab From bdc418d1f99738d45b2a0e4fab07c974d5b58681 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Thu, 20 Mar 2014 10:59:58 +0100 Subject: [PATCH 041/187] var count is assigned in the inner loop so it must be checked inside there to be properly used as part of the exit condition of the outer loop --- apps/user_ldap/lib/access.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 1af993677c..d135ee5b73 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -786,6 +786,7 @@ class Access extends LDAPUtility { $cr = $this->connection->getConnectionResource(); do { + $continue = false; $search = $this->executeSearch($filter, $base, $attr, $limit, $offset); if($search === false) { @@ -798,12 +799,15 @@ class Access extends LDAPUtility { if($count !== false) { $counter += $count; } + if($count === $limit) { + $continue = true; + } } $this->processPagedSearchStatus($sr, $filter, $base, $count, $limit, $offset, $pagedSearchOK, $skipHandling); $offset += $limit; - } while($count === $limit); + } while($continue); return $counter; } -- GitLab From 2e5adadad7b779f0794a6ecddb2b0f51b9214b4a Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Thu, 20 Mar 2014 11:38:05 +0100 Subject: [PATCH 042/187] Put inner loop into own method, let's see whether it makes scrutinizer happier --- apps/user_ldap/lib/access.php | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index d135ee5b73..ce97aaff14 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -794,15 +794,8 @@ class Access extends LDAPUtility { } list($sr, $pagedSearchOK) = $search; - foreach($sr as $key => $res) { - $count = $this->ldap->countEntries($cr, $res); - if($count !== false) { - $counter += $count; - } - if($count === $limit) { - $continue = true; - } - } + $count = $this->countEntriesInSearchResults($sr, $limit, $continue); + $counter += $count; $this->processPagedSearchStatus($sr, $filter, $base, $count, $limit, $offset, $pagedSearchOK, $skipHandling); @@ -812,6 +805,22 @@ class Access extends LDAPUtility { return $counter; } + private function countEntriesInSearchResults($searchResults, $limit, + &$hasHitLimit) { + $cr = $this->connection->getConnectionResource(); + $count = 0; + + foreach($searchResults as $res) { + $count = intval($this->ldap->countEntries($cr, $res)); + $counter += $count; + if($count === $limit) { + $hasHitLimit = true; + } + } + + return $counter; + } + /** * @brief executes an LDAP search * @param $filter the LDAP filter for the search -- GitLab From ee3368d2ad8c362e27d904bbb22c7b741b09cff8 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Wed, 9 Apr 2014 11:38:51 +0200 Subject: [PATCH 043/187] replace hardcoded limit of 400 with user controlled ldapPagingSize value --- apps/user_ldap/lib/access.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index ce97aaff14..0b3ff4aa15 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -777,8 +777,7 @@ class Access extends LDAPUtility { \OCP\Util::writeLog('user_ldap', 'Count filter: '.print_r($filter, true), \OCP\Util::DEBUG); if(is_null($limit)) { - //TODO replace 400 with $this->connection->ldapPagingSize; once PR 6221 is merged and move it to callee countUsers() - $limit = 400; + $limit = $this->connection->ldapPagingSize; } $counter = 0; -- GitLab From 015b9b1dac1e7f90e4e28d2b19697bedf83e56fe Mon Sep 17 00:00:00 2001 From: Joas Schilling <nickvergessen@gmx.de> Date: Wed, 2 Apr 2014 12:54:41 +0200 Subject: [PATCH 044/187] Add option to getUsersSharingFile() to get the paths for the shared users --- lib/private/share/share.php | 61 ++++++++++++++++++++++++++++++------- lib/public/share.php | 7 +++-- 2 files changed, 54 insertions(+), 14 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7bab98b00b..3d22f6fd45 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -91,23 +91,25 @@ class Share extends \OC\Share\Constants { /** * Find which users can access a shared item - * @param $path to the file - * @param $user owner of the file - * @param include owner to the list of users with access to the file + * @param string $path to the file + * @param string $ownerUser owner of the file + * @param bool $includeOwner include owner to the list of users with access to the file + * @param bool $returnUserPaths Return an array with the user => path map * @return array * @note $path needs to be relative to user data dir, e.g. 'file.txt' * not '/admin/data/file.txt' */ - public static function getUsersSharingFile($path, $user, $includeOwner = false) { + public static function getUsersSharingFile($path, $ownerUser, $includeOwner = false, $returnUserPaths = false) { - $shares = array(); + $shares = $sharePaths = $fileTargets = array(); $publicShare = false; $source = -1; $cache = false; - $view = new \OC\Files\View('/' . $user . '/files'); + $view = new \OC\Files\View('/' . $ownerUser . '/files'); if ($view->file_exists($path)) { $meta = $view->getFileInfo($path); + $path = substr($meta->getPath(), strlen('/' . $ownerUser . '/files')); } else { // if the file doesn't exists yet we start with the parent folder $meta = $view->getFileInfo(dirname($path)); @@ -119,10 +121,9 @@ class Share extends \OC\Share\Constants { } while ($source !== -1) { - // Fetch all shares with another user $query = \OC_DB::prepare( - 'SELECT `share_with` + 'SELECT `share_with`, `file_source`, `file_target` FROM `*PREFIX*share` WHERE @@ -136,12 +137,15 @@ class Share extends \OC\Share\Constants { } else { while ($row = $result->fetchRow()) { $shares[] = $row['share_with']; + if ($returnUserPaths) { + $fileTargets[(int) $row['file_source']][$row['share_with']] = $row; + } } } - // We also need to take group shares into account + // We also need to take group shares into account $query = \OC_DB::prepare( - 'SELECT `share_with` + 'SELECT `share_with`, `file_source`, `file_target` FROM `*PREFIX*share` WHERE @@ -156,6 +160,11 @@ class Share extends \OC\Share\Constants { while ($row = $result->fetchRow()) { $usersInGroup = \OC_Group::usersInGroup($row['share_with']); $shares = array_merge($shares, $usersInGroup); + if ($returnUserPaths) { + foreach ($usersInGroup as $user) { + $fileTargets[(int) $row['file_source']][$user] = $row; + } + } } } @@ -188,9 +197,39 @@ class Share extends \OC\Share\Constants { $source = -1; } } + // Include owner in list of users, if requested if ($includeOwner) { - $shares[] = $user; + $shares[] = $ownerUser; + if ($returnUserPaths) { + $sharePaths[$ownerUser] = $path; + } + } + + if ($returnUserPaths) { + $fileTargetIDs = array_keys($fileTargets); + $fileTargetIDs = array_unique($fileTargetIDs); + + $query = \OC_DB::prepare( + 'SELECT `fileid`, `path` + FROM `*PREFIX*filecache` + WHERE `fileid` IN (' . implode(',', $fileTargetIDs) . ')' + ); + $result = $query->execute(); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + foreach ($fileTargets[$row['fileid']] as $uid => $shareData) { + $sharedPath = '/Shared' . $shareData['file_target']; + $sharedPath .= substr($path, strlen($row['path']) -5); + $sharePaths[$uid] = $sharedPath; + } + } + } + + return $sharePaths; } return array("users" => array_unique($shares), "public" => $publicShare); diff --git a/lib/public/share.php b/lib/public/share.php index 564839e86b..c694314ad0 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -64,14 +64,15 @@ class Share extends \OC\Share\Constants { /** * Find which users can access a shared item * @param string $path to the file - * @param string $user owner of the file + * @param string $ownerUser owner of the file * @param bool $includeOwner include owner to the list of users with access to the file + * @param bool $returnUserPaths Return an array with the user => path map * @return array * @note $path needs to be relative to user data dir, e.g. 'file.txt' * not '/admin/data/file.txt' */ - public static function getUsersSharingFile($path, $user, $includeOwner = false) { - return \OC\Share\Share::getUsersSharingFile($path, $user, $includeOwner); + public static function getUsersSharingFile($path, $ownerUser, $includeOwner = false, $returnUserPaths = false) { + return \OC\Share\Share::getUsersSharingFile($path, $ownerUser, $includeOwner, $returnUserPaths); } /** -- GitLab From d418e176ce4ce3ee07a5b9e632150470c0387f87 Mon Sep 17 00:00:00 2001 From: Joas Schilling <nickvergessen@gmx.de> Date: Wed, 9 Apr 2014 15:01:39 +0200 Subject: [PATCH 045/187] Do not query when the list is empty --- lib/private/share/share.php | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 3d22f6fd45..59826d0303 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -210,21 +210,23 @@ class Share extends \OC\Share\Constants { $fileTargetIDs = array_keys($fileTargets); $fileTargetIDs = array_unique($fileTargetIDs); - $query = \OC_DB::prepare( - 'SELECT `fileid`, `path` - FROM `*PREFIX*filecache` - WHERE `fileid` IN (' . implode(',', $fileTargetIDs) . ')' - ); - $result = $query->execute(); + if (!empty($fileTargetIDs)) { + $query = \OC_DB::prepare( + 'SELECT `fileid`, `path` + FROM `*PREFIX*filecache` + WHERE `fileid` IN (' . implode(',', $fileTargetIDs) . ')' + ); + $result = $query->execute(); - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - while ($row = $result->fetchRow()) { - foreach ($fileTargets[$row['fileid']] as $uid => $shareData) { - $sharedPath = '/Shared' . $shareData['file_target']; - $sharedPath .= substr($path, strlen($row['path']) -5); - $sharePaths[$uid] = $sharedPath; + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + foreach ($fileTargets[$row['fileid']] as $uid => $shareData) { + $sharedPath = '/Shared' . $shareData['file_target']; + $sharedPath .= substr($path, strlen($row['path']) -5); + $sharePaths[$uid] = $sharedPath; + } } } } -- GitLab From 2fc9e27ceddf9d632d79916a71f9100138bb685f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Wed, 9 Apr 2014 22:16:41 +0200 Subject: [PATCH 046/187] use FileList.findFileEl --- apps/files/js/filelist.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 8ee89aad3e..9c749bb8f3 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1098,7 +1098,8 @@ $(document).ready(function() { fileDirectory = fileDirectory[0]; // Get the directory - if ($('tr[data-file="'+fileDirectory+'"]').length === 0) { + var fd = FileList.findFileEl(fileDirectory); + if (fd.length === 0) { var dir = { name: fileDirectory, type: 'dir', -- GitLab From e8be2ac55492a7e4f141d3bb7e6698783bef454c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Wed, 9 Apr 2014 23:32:12 +0200 Subject: [PATCH 047/187] In cases folder drag and drop is not supported a proper message is displayed --- apps/files/js/file-upload.js | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 46a5320840..070314a118 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -242,11 +242,18 @@ OC.Upload = { data.errorThrown = errorMessage; } - if (file.type === '' && file.size === 4096) { - data.textStatus = 'dirorzero'; - data.errorThrown = t('files', 'Unable to upload {filename} as it is a directory or has 0 bytes', - {filename: file.name} - ); + // in case folder drag and drop is not supported file will point to a directory + if (!file.type && file.size%4096 === 0 && file.size <= 102400) { + try { + reader = new FileReader(); + reader.readAsBinaryString(f); + } catch (NS_ERROR_FILE_ACCESS_DENIED) { + //file is a directory + data.textStatus = 'dirorzero'; + data.errorThrown = t('files', 'Unable to upload {filename} as it is a directory or has 0 bytes', + {filename: file.name} + ); + } } // add size -- GitLab From 0edacf372c5b2e1f1b64210ceff5e757494c959b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Thu, 10 Apr 2014 18:07:36 +0200 Subject: [PATCH 048/187] fix single file upload in firefox --- apps/files/js/file-upload.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 070314a118..516812563a 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -333,11 +333,15 @@ OC.Upload = { submit: function(e, data) { OC.Upload.rememberUpload(data); if ( ! data.formData ) { + var fileDirectory = ''; + if(typeof data.files[0].relativePath !== 'undefined') { + fileDirectory = data.files[0].relativePath; + } // noone set update parameters, we set the minimum data.formData = { requesttoken: oc_requesttoken, dir: $('#dir').val(), - file_directory: data.files[0]['relativePath'] + file_directory: fileDirectory }; } }, -- GitLab From 9e9c109390c265cdb63b5788365ce74034009a6c Mon Sep 17 00:00:00 2001 From: Volkan Gezer <volkangezer@gmail.com> Date: Thu, 10 Apr 2014 21:54:25 +0200 Subject: [PATCH 049/187] Expiration date is hidden smoothly From now on, it is hidden smoothly as the other fields do. --- core/js/share.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index ef71cc7999..19d71a6cbd 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -480,15 +480,16 @@ OC.Share={ $('#emailPrivateLink #email').hide(); $('#emailPrivateLink #emailButton').hide(); $('#allowPublicUploadWrapper').hide(); + $('#expirationDate').hide(); }, dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); }, showExpirationDate:function(date) { $('#expirationCheckbox').attr('checked', true); - $('#expirationDate').before('<br />'); $('#expirationDate').val(date); - $('#expirationDate').show(); + $('#expirationDate').show('blind'); + $('#expirationDate').css('display','block'); $('#expirationDate').datepicker({ dateFormat : 'dd-mm-yy' }); @@ -558,7 +559,7 @@ $(document).ready(function() { OC.Share.itemShares[shareType].splice(index, 1); OC.Share.updateIcon(itemType, itemSource); if (typeof OC.Share.statuses[itemSource] === 'undefined') { - $('#expiration').hide(); + $('#expiration').hide('blind'); } }); return false; @@ -618,7 +619,7 @@ $(document).ready(function() { OC.Share.itemShares[OC.Share.SHARE_TYPE_LINK] = false; OC.Share.updateIcon(itemType, itemSource); if (typeof OC.Share.statuses[itemSource] === 'undefined') { - $('#expiration').hide(); + $('#expiration').hide('blind'); } }); } @@ -710,7 +711,7 @@ $(document).ready(function() { if (!result || result.status !== 'success') { OC.dialogs.alert(t('core', 'Error unsetting expiration date'), t('core', 'Error')); } - $('#expirationDate').hide(); + $('#expirationDate').hide('blind'); }); } }); -- GitLab From e28227ecdc0f898868701fe131326d8c15ef60d7 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Fri, 11 Apr 2014 13:56:06 +0200 Subject: [PATCH 050/187] fix comparison in determineMode, fixes problems with restoring the filter mode (assisted or manually) on page refresh --- apps/user_ldap/js/ldapFilter.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index 70f24f0d4a..d0fee6db7f 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -64,13 +64,16 @@ LdapFilter.prototype.determineMode = function() { LdapWizard.ajax(param, function(result) { property = 'ldap' + filter.target + 'FilterMode'; - filter.mode = result.changes[property]; + filter.mode = parseInt(result.changes[property]); if(filter.mode === LdapWizard.filterModeRaw && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); } else if(filter.mode === LdapWizard.filterModeAssisted && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); + } else { + console.log('LDAP Wizard determineMode: returned mode was »' + + filter.mode + '« of type ' + typeof filter.mode); } filter.unlock(); }, -- GitLab From 1c57ffa16fab8cfb132978865d819e98cb143a24 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Fri, 11 Apr 2014 14:08:12 +0200 Subject: [PATCH 051/187] Give hint when composing filter failed --- apps/user_ldap/js/ldapFilter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index d0fee6db7f..0d69164794 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -50,7 +50,8 @@ LdapFilter.prototype.compose = function() { } }, function (result) { - // error handling + console.log('LDAP Wizard: could not compose filter. '+ + 'Please check owncloud.log'); } ); } -- GitLab From 07ea57465ba23dd31dae943b44f4c04ccabb5e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Fri, 11 Apr 2014 14:54:13 +0200 Subject: [PATCH 052/187] drop folder support on public shared folders --- apps/files_sharing/js/public.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 9ce8985f1f..ae2412f6a3 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -62,11 +62,17 @@ $(document).ready(function() { var file_upload_start = $('#file_upload_start'); file_upload_start.on('fileuploadadd', function(e, data) { + var fileDirectory = ''; + if(typeof data.files[0].relativePath !== 'undefined') { + fileDirectory = data.files[0].relativePath; + } + // Add custom data to the upload handler data.formData = { requesttoken: $('#publicUploadRequestToken').val(), dirToken: $('#dirToken').val(), - subdir: $('input#dir').val() + subdir: $('input#dir').val(), + file_directory: fileDirectory }; }); -- GitLab From 6343391e580b0a686f2b2ee2b0b43ca675473be8 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Fri, 11 Apr 2014 20:38:27 +0200 Subject: [PATCH 053/187] Change from showHTML to show There is no need to use `showHTML` here. --- apps/files/js/files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index ac10191618..9f38263bef 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -135,7 +135,7 @@ var Files = { return; } if (initStatus === '1') { // encryption tried to init but failed - OC.Notification.showHtml(t('files', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.')); + OC.Notification.show(t('files', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.')); return; } if (encryptedFiles === '1') { -- GitLab From df67a04385e64d2e14a7c0385289904d04b53301 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Sun, 13 Apr 2014 11:51:03 +0200 Subject: [PATCH 054/187] Move security headers to base.php Some headers were currently only added to the templates but not to other components (e.g. SabreDAV / JSON / etc...) The migration to base.php ensures that the headers are served to all requests passing base.php --- lib/base.php | 31 +++++++++++++++++++++++++++++++ lib/private/template.php | 26 +------------------------- 2 files changed, 32 insertions(+), 25 deletions(-) diff --git a/lib/base.php b/lib/base.php index 6ea77aa7a5..34baba69d4 100644 --- a/lib/base.php +++ b/lib/base.php @@ -213,6 +213,36 @@ class OC { } } + /* + * This function adds some security related headers to all requests + * served via base.php + * The implementation of this function as to happen here to ensure that + * all third-party components (e.g. SabreDAV) also benefit from this + * headers + */ + public static function addSecurityHeaders() { + header('X-XSS-Protection: 1; mode=block'); // Enforce browser based XSS filters + header('X-Content-Type-Options: nosniff'); // Disable sniffing the content type for IE + + // iFrame Restriction Policy + $xFramePolicy = OC_Config::getValue('xframe_restriction', true); + if($xFramePolicy) { + header('X-Frame-Options: Sameorigin'); // Disallow iFraming from other domains + } + + // Content Security Policy + // If you change the standard policy, please also change it in config.sample.php + $policy = OC_Config::getValue('custom_csp_policy', + 'default-src \'self\'; ' + .'script-src \'self\' \'unsafe-eval\'; ' + .'style-src \'self\' \'unsafe-inline\'; ' + .'frame-src *; ' + .'img-src *; ' + .'font-src \'self\' data:; ' + .'media-src *'); + header('Content-Security-Policy:'.$policy); + } + public static function checkSSL() { // redirect to https site if configured if (OC_Config::getValue("forcessl", false)) { @@ -512,6 +542,7 @@ class OC { self::checkConfig(); self::checkInstalled(); self::checkSSL(); + self::addSecurityHeaders(); $errors = OC_Util::checkServer(); if (count($errors) > 0) { diff --git a/lib/private/template.php b/lib/private/template.php index c6851c6cc8..b7db569095 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -64,31 +64,7 @@ class OC_Template extends \OC\Template\Base { $this->path = $path; parent::__construct($template, $requesttoken, $l10n, $themeDefaults); - - // Some headers to enhance security - header('X-XSS-Protection: 1; mode=block'); // Enforce browser based XSS filters - header('X-Content-Type-Options: nosniff'); // Disable sniffing the content type for IE - - // iFrame Restriction Policy - $xFramePolicy = OC_Config::getValue('xframe_restriction', true); - if($xFramePolicy) { - header('X-Frame-Options: Sameorigin'); // Disallow iFraming from other domains - } - - // Content Security Policy - // If you change the standard policy, please also change it in config.sample.php - $policy = OC_Config::getValue('custom_csp_policy', - 'default-src \'self\'; ' - .'script-src \'self\' \'unsafe-eval\'; ' - .'style-src \'self\' \'unsafe-inline\'; ' - .'frame-src *; ' - .'img-src *; ' - .'font-src \'self\' data:; ' - .'media-src *'); - header('Content-Security-Policy:'.$policy); // Standard - - } - +} /** * autodetect the formfactor of the used device * default -> the normal desktop browser interface -- GitLab From a2a850dd91664cbfeba50186d5219d90d62eadd2 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Sun, 13 Apr 2014 11:52:31 +0200 Subject: [PATCH 055/187] Fix indentation --- lib/private/template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/template.php b/lib/private/template.php index b7db569095..610d5fbc8e 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -64,7 +64,8 @@ class OC_Template extends \OC\Template\Base { $this->path = $path; parent::__construct($template, $requesttoken, $l10n, $themeDefaults); -} + } + /** * autodetect the formfactor of the used device * default -> the normal desktop browser interface -- GitLab From b04d95b1160673dbaa80ce214f22e931e8c93178 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Sun, 13 Apr 2014 12:48:16 +0200 Subject: [PATCH 056/187] Remove uneeded usages of nosniff --- lib/private/json.php | 2 -- lib/public/appframework/http/jsonresponse.php | 1 - tests/lib/appframework/http/JSONResponseTest.php | 7 ------- 3 files changed, 10 deletions(-) diff --git a/lib/private/json.php b/lib/private/json.php index 4ccdb490a6..34f81c3b8c 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -119,8 +119,6 @@ class OC_JSON{ * Encode and print $data in json format */ public static function encodedPrint($data, $setContentType=true) { - // Disable mimesniffing, don't move this to setContentTypeHeader! - header( 'X-Content-Type-Options: nosniff' ); if($setContentType) { self::setContentTypeHeader(); } diff --git a/lib/public/appframework/http/jsonresponse.php b/lib/public/appframework/http/jsonresponse.php index 6628c4514d..6d029b7464 100644 --- a/lib/public/appframework/http/jsonresponse.php +++ b/lib/public/appframework/http/jsonresponse.php @@ -49,7 +49,6 @@ class JSONResponse extends Response { public function __construct($data=array(), $statusCode=Http::STATUS_OK) { $this->data = $data; $this->setStatus($statusCode); - $this->addHeader('X-Content-Type-Options', 'nosniff'); $this->addHeader('Content-type', 'application/json; charset=utf-8'); } diff --git a/tests/lib/appframework/http/JSONResponseTest.php b/tests/lib/appframework/http/JSONResponseTest.php index b9b7c7d638..fbaae1b922 100644 --- a/tests/lib/appframework/http/JSONResponseTest.php +++ b/tests/lib/appframework/http/JSONResponseTest.php @@ -79,13 +79,6 @@ class JSONResponseTest extends \PHPUnit_Framework_TestCase { $this->assertEquals($expected, $this->json->render()); } - - public function testShouldHaveXContentHeaderByDefault() { - $headers = $this->json->getHeaders(); - $this->assertEquals('nosniff', $headers['X-Content-Type-Options']); - } - - public function testConstructorAllowsToSetData() { $data = array('hi'); $code = 300; -- GitLab From 387d46cb988ba2e617de9ede0ff6fb8430e59758 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Sun, 13 Apr 2014 12:54:26 +0200 Subject: [PATCH 057/187] Typo + Line breaks --- lib/base.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/base.php b/lib/base.php index 34baba69d4..5fb7b0b467 100644 --- a/lib/base.php +++ b/lib/base.php @@ -214,11 +214,9 @@ class OC { } /* - * This function adds some security related headers to all requests - * served via base.php - * The implementation of this function as to happen here to ensure that - * all third-party components (e.g. SabreDAV) also benefit from this - * headers + * This function adds some security related headers to all requests served via base.php + * The implementation of this function as hto happen here to ensure that all third-party + * components (e.g. SabreDAV) also benefit from this headers. */ public static function addSecurityHeaders() { header('X-XSS-Protection: 1; mode=block'); // Enforce browser based XSS filters -- GitLab From fa8814902e9012880179e61ea846a7d85e3079f8 Mon Sep 17 00:00:00 2001 From: Robin McCorkell <rmccorkell@karoshi.org.uk> Date: Sun, 13 Apr 2014 13:47:08 +0100 Subject: [PATCH 058/187] Adjust logic for deciding if trashbin empty Any error in opening the trashbin directory returns 'true' for isEmpty. An error is prevented by checking if the directory exists before trying to open it. --- apps/files_trashbin/lib/trashbin.php | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index 7b14a4ec08..bf8d465e5d 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -921,13 +921,11 @@ class Trashbin { public static function isEmpty($user) { $view = new \OC\Files\View('/' . $user . '/files_trashbin'); - $dh = $view->opendir('/files'); - if (!$dh) { - return false; - } - while ($file = readdir($dh)) { - if ($file !== '.' and $file !== '..') { - return false; + if ($view->is_dir('/files') && $dh = $view->opendir('/files')) { + while ($file = readdir($dh)) { + if ($file !== '.' and $file !== '..') { + return false; + } } } return true; -- GitLab From 869e7a51f0ed5b24c1ee0714112edb71e7dd1b62 Mon Sep 17 00:00:00 2001 From: Robin McCorkell <rmccorkell@karoshi.org.uk> Date: Sun, 13 Apr 2014 14:46:37 +0100 Subject: [PATCH 059/187] Prevent error in files_trashbin `glob` can return FALSE when the directory is empty, instead of an empty array, causing an error at `foreach`. "Note: On some systems it is impossible to distinguish between empty match and an error." See http://www.php.net/manual/en/function.glob.php -> Return Values --- apps/files_trashbin/lib/trashbin.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index bf8d465e5d..9b931333b7 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -824,13 +824,15 @@ class Trashbin { $matches = glob($escapedVersionsName . '*'); } - foreach ($matches as $ma) { - if ($timestamp) { - $parts = explode('.v', substr($ma, 0, $offset)); - $versions[] = (end($parts)); - } else { - $parts = explode('.v', $ma); - $versions[] = (end($parts)); + if (is_array($matches)) { + foreach ($matches as $ma) { + if ($timestamp) { + $parts = explode('.v', substr($ma, 0, $offset)); + $versions[] = (end($parts)); + } else { + $parts = explode('.v', $ma); + $versions[] = (end($parts)); + } } } return $versions; -- GitLab From eeee9eacea333035e22ef3ed938e36f56bc762cd Mon Sep 17 00:00:00 2001 From: Robin McCorkell <rmccorkell@karoshi.org.uk> Date: Sun, 13 Apr 2014 16:17:13 +0100 Subject: [PATCH 060/187] Prevent error from cache update on deleted files --- lib/private/files/storage/local.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index 571bf7f97c..ff2949d33b 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -305,7 +305,11 @@ if (\OC_Util::runningOnWindows()) { * @return bool */ public function hasUpdated($path, $time) { - return $this->filemtime($path) > $time; + if ($this->file_exists($path)) { + return $this->filemtime($path) > $time; + } else { + return true; + } } /** -- GitLab From 8bb003868c9f319e387bf464a035a3b2fd123531 Mon Sep 17 00:00:00 2001 From: Robin McCorkell <rmccorkell@karoshi.org.uk> Date: Sun, 13 Apr 2014 16:49:23 +0100 Subject: [PATCH 061/187] Fix user_ldap default setting value --- apps/user_ldap/templates/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 0a111225a7..03f2b8db09 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -37,7 +37,7 @@ <p><label for="ldap_attributes_for_group_search"><?php p($l->t('Group Search Attributes'));?></label><textarea id="ldap_attributes_for_group_search" name="ldap_attributes_for_group_search" placeholder="<?php p($l->t('Optional; one attribute per line'));?>" data-default="<?php p($_['ldap_attributes_for_group_search_default']); ?>" title="<?php p($l->t('Group Search Attributes'));?>"></textarea></p> <p><label for="ldap_group_member_assoc_attribute"><?php p($l->t('Group-Member association'));?></label><select id="ldap_group_member_assoc_attribute" name="ldap_group_member_assoc_attribute" data-default="<?php p($_['ldap_group_member_assoc_attribute_default']); ?>" ><option value="uniqueMember"<?php if (isset($_['ldap_group_member_assoc_attribute']) && ($_['ldap_group_member_assoc_attribute'] === 'uniqueMember')) p(' selected'); ?>>uniqueMember</option><option value="memberUid"<?php if (isset($_['ldap_group_member_assoc_attribute']) && ($_['ldap_group_member_assoc_attribute'] === 'memberUid')) p(' selected'); ?>>memberUid</option><option value="member"<?php if (isset($_['ldap_group_member_assoc_attribute']) && ($_['ldap_group_member_assoc_attribute'] === 'member')) p(' selected'); ?>>member (AD)</option></select></p> <p><label for="ldap_nested_groups"><?php p($l->t('Nested Groups'));?></label><input type="checkbox" id="ldap_nested_groups" name="ldap_nested_groups" value="1" data-default="<?php p($_['ldap_nested_groups_default']); ?>" title="<?php p($l->t('When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)'));?>" /></p> - <p><label for="ldap_paging_size"><?php p($l->t('Paging chunksize'));?></label><input type="number" id="ldap_paging_size" name="ldap_paging_size" title="<?php p($l->t('Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)'));?>" data-default="<?php p($_['ldap_paging_size']); ?>" /></p> + <p><label for="ldap_paging_size"><?php p($l->t('Paging chunksize'));?></label><input type="number" id="ldap_paging_size" name="ldap_paging_size" title="<?php p($l->t('Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)'));?>" data-default="<?php p($_['ldap_paging_size_default']); ?>" /></p> </div> <h3><?php p($l->t('Special Attributes'));?></h3> <div> -- GitLab From c123dc7de4d9dde46bd31dbf6211704f1b4bb82d Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Mon, 14 Apr 2014 10:15:31 +0200 Subject: [PATCH 062/187] Fix typo Thanks @DeepDiver1975 --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index 5fb7b0b467..7098f480e2 100644 --- a/lib/base.php +++ b/lib/base.php @@ -215,7 +215,7 @@ class OC { /* * This function adds some security related headers to all requests served via base.php - * The implementation of this function as hto happen here to ensure that all third-party + * The implementation of this function has to happen here to ensure that all third-party * components (e.g. SabreDAV) also benefit from this headers. */ public static function addSecurityHeaders() { -- GitLab From 51e47319ef2ab37d458dc96ba33a26bb851102be Mon Sep 17 00:00:00 2001 From: Thomas Tanghus <thomas@tanghus.net> Date: Mon, 14 Apr 2014 17:17:50 +0200 Subject: [PATCH 063/187] White-list known secure mime types. Refs. #8184 --- lib/private/connector/sabre/file.php | 6 +- lib/private/files/type/detection.php | 40 ++++- lib/private/helper.php | 10 ++ lib/private/mimetypes.list.php | 210 +++++++++++++-------------- tests/lib/helper.php | 12 ++ 5 files changed, 166 insertions(+), 112 deletions(-) diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index ef6caaf22a..750d646a8f 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -205,10 +205,12 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D */ public function getContentType() { if (isset($this->fileinfo_cache['mimetype'])) { - return $this->fileinfo_cache['mimetype']; + $mimeType = $this->fileinfo_cache['mimetype']; + } else { + $mimeType = \OC\Files\Filesystem::getMimeType($this->path); } - return \OC\Files\Filesystem::getMimeType($this->path); + return \OC_Helper::getSecureMimeType($mimeType); } diff --git a/lib/private/files/type/detection.php b/lib/private/files/type/detection.php index 11e439032c..8ee5391781 100644 --- a/lib/private/files/type/detection.php +++ b/lib/private/files/type/detection.php @@ -17,24 +17,40 @@ namespace OC\Files\Type; */ class Detection { protected $mimetypes = array(); + protected $secureMimeTypes = array(); /** - * add an extension -> mimetype mapping + * Add an extension -> mimetype mapping + * + * $mimetype is the assumed correct mime type + * The optional $secureMimeType is an alternative to send to send + * to avoid potential XSS. * * @param string $extension * @param string $mimetype + * @param string|null $secureMimeType */ - public function registerType($extension, $mimetype) { - $this->mimetypes[$extension] = $mimetype; + public function registerType($extension, $mimetype, $secureMimeType = null) { + $this->mimetypes[$extension] = array($mimetype, $secureMimeType); + $this->secureMimeTypes[$mimetype] = $secureMimeType ?: $mimetype; } /** - * add an array of extension -> mimetype mappings + * Add an array of extension -> mimetype mappings + * + * The mimetype value is in itself an array where the first index is + * the assumed correct mimetype and the second is either a secure alternative + * or null if the correct is considered secure. * * @param array $types */ public function registerTypeArray($types) { $this->mimetypes = array_merge($this->mimetypes, $types); + + // Update the alternative mimetypes to avoid having to look them up each time. + foreach ($this->mimetypes as $mimeType) { + $this->secureMimeTypes[$mimeType[0]] = $mimeType[1] ?: $mimeType[0]; + } } /** @@ -48,7 +64,9 @@ class Detection { //try to guess the type by the file extension $extension = strtolower(strrchr(basename($path), ".")); $extension = substr($extension, 1); //remove leading . - return (isset($this->mimetypes[$extension])) ? $this->mimetypes[$extension] : 'application/octet-stream'; + return (isset($this->mimetypes[$extension]) && isset($this->mimetypes[$extension][0])) + ? $this->mimetypes[$extension][0] + : 'application/octet-stream'; } else { return 'application/octet-stream'; } @@ -123,4 +141,16 @@ class Detection { return $mime; } } + + /** + * Get a secure mimetype that won't expose potential XSS. + * + * @param string $mimeType + * @return string + */ + public function getSecureMimeType($mimeType) { + return isset($this->secureMimeTypes[$mimeType]) + ? $this->secureMimeTypes[$mimeType] + : 'application/octet-stream'; + } } diff --git a/lib/private/helper.php b/lib/private/helper.php index da3d3cd1c6..d5214823de 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -430,6 +430,16 @@ class OC_Helper { return self::getMimetypeDetector()->detect($path); } + /** + * Get a secure mimetype that won't expose potential XSS. + * + * @param string $mimeType + * @return string + */ + static function getSecureMimeType($mimeType) { + return self::getMimetypeDetector()->getSecureMimeType($mimeType); + } + /** * get the mimetype form a data string * diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 91bcf58426..cdfd2ec0fd 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -24,109 +24,109 @@ * Array mapping file extensions to mimetypes (in alphabetical order). */ return array( - '7z' => 'application/x-7z-compressed', - 'accdb' => 'application/msaccess', - 'ai' => 'application/illustrator', - 'avi' => 'video/x-msvideo', - 'bash' => 'text/x-shellscript', - 'blend' => 'application/x-blender', - 'bin' => 'application/x-bin', - 'bmp' => 'image/bmp', - 'cb7' => 'application/x-cbr', - 'cba' => 'application/x-cbr', - 'cbr' => 'application/x-cbr', - 'cbt' => 'application/x-cbr', - 'cbtc' => 'application/x-cbr', - 'cbz' => 'application/x-cbr', - 'cc' => 'text/x-c', - 'cdr' => 'application/coreldraw', - 'cpp' => 'text/x-c++src', - 'css' => 'text/css', - 'csv' => 'text/csv', - 'cvbdl' => 'application/x-cbr', - 'c' => 'text/x-c', - 'c++' => 'text/x-c++src', - 'deb' => 'application/x-deb', - 'doc' => 'application/msword', - 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', - 'dot' => 'application/msword', - 'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template', - 'dv' => 'video/dv', - 'eot' => 'application/vnd.ms-fontobject', - 'epub' => 'application/epub+zip', - 'exe' => 'application/x-ms-dos-executable', - 'flac' => 'audio/flac', - 'gif' => 'image/gif', - 'gz' => 'application/x-gzip', - 'gzip' => 'application/x-gzip', - 'html' => 'text/html', - 'htm' => 'text/html', - 'ical' => 'text/calendar', - 'ics' => 'text/calendar', - 'impress' => 'text/impress', - 'jpeg' => 'image/jpeg', - 'jpg' => 'image/jpeg', - 'js' => 'application/javascript', - 'json' => 'application/json', - 'keynote' => 'application/x-iwork-keynote-sffkey', - 'kra' => 'application/x-krita', - 'm2t' => 'video/mp2t', - 'm4v' => 'video/mp4', - 'markdown' => 'text/markdown', - 'mdown' => 'text/markdown', - 'md' => 'text/markdown', - 'mdb' => 'application/msaccess', - 'mdwn' => 'text/markdown', - 'mkv' => 'video/x-matroska', - 'mobi' => 'application/x-mobipocket-ebook', - 'mov' => 'video/quicktime', - 'mp3' => 'audio/mpeg', - 'mp4' => 'video/mp4', - 'mpeg' => 'video/mpeg', - 'mpg' => 'video/mpeg', - 'msi' => 'application/x-msi', - 'numbers' => 'application/x-iwork-numbers-sffnumbers', - 'odg' => 'application/vnd.oasis.opendocument.graphics', - 'odp' => 'application/vnd.oasis.opendocument.presentation', - 'ods' => 'application/vnd.oasis.opendocument.spreadsheet', - 'odt' => 'application/vnd.oasis.opendocument.text', - 'oga' => 'audio/ogg', - 'ogg' => 'audio/ogg', - 'ogv' => 'video/ogg', - 'otf' => 'font/opentype', - 'pages' => 'application/x-iwork-pages-sffpages', - 'pdf' => 'application/pdf', - 'php' => 'application/x-php', - 'pl' => 'application/x-perl', - 'png' => 'image/png', - 'ppt' => 'application/mspowerpoint', - 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', - 'psd' => 'application/x-photoshop', - 'py' => 'text/x-python', - 'rar' => 'application/x-rar-compressed', - 'reveal' => 'text/reveal', - 'sgf' => 'application/sgf', - 'sh-lib' => 'text/x-shellscript', - 'sh' => 'text/x-shellscript', - 'svg' => 'image/svg+xml', - 'swf' => 'application/x-shockwave-flash', - 'tar' => 'application/x-tar', - 'tar.gz' => 'application/x-compressed', - 'tex' => 'application/x-tex', - 'tgz' => 'application/x-compressed', - 'tiff' => 'image/tiff', - 'tif' => 'image/tiff', - 'ttf' => 'application/x-font-ttf', - 'txt' => 'text/plain', - 'vcard' => 'text/vcard', - 'vcf' => 'text/vcard', - 'wav' => 'audio/wav', - 'webm' => 'video/webm', - 'woff' => 'application/font-woff', - 'wmv' => 'video/x-ms-asf', - 'xcf' => 'application/x-gimp', - 'xls' => 'application/msexcel', - 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', - 'xml' => 'application/xml', - 'zip' => 'application/zip', + '7z' => array('application/x-7z-compressed', null), + 'accdb' => array('application/msaccess', null), + 'ai' => array('application/illustrator', null), + 'avi' => array('video/x-msvideo', null), + 'bash' => array('text/x-shellscript', null), + 'blend' => array('application/x-blender', null), + 'bin' => array('application/x-bin', null), + 'bmp' => array('image/bmp', null), + 'cb7' => array('application/x-cbr', null), + 'cba' => array('application/x-cbr', null), + 'cbr' => array('application/x-cbr', null), + 'cbt' => array('application/x-cbr', null), + 'cbtc' => array('application/x-cbr', null), + 'cbz' => array('application/x-cbr', null), + 'cc' => array('text/x-c', null), + 'cdr' => array('application/coreldraw', null), + 'cpp' => array('text/x-c++src', null), + 'css' => array('text/css', null), + 'csv' => array('text/csv', null), + 'cvbdl' => array('application/x-cbr', null), + 'c' => array('text/x-c', null), + 'c++' => array('text/x-c++src', null), + 'deb' => array('application/x-deb', null), + 'doc' => array('application/msword', null), + 'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', null), + 'dot' => array('application/msword', null), + 'dotx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.template', null), + 'dv' => array('video/dv', null), + 'eot' => array('application/vnd.ms-fontobject', null), + 'epub' => array('application/epub+zip', null), + 'exe' => array('application/x-ms-dos-executable', null), + 'flac' => array('audio/flac', null), + 'gif' => array('image/gif', null), + 'gz' => array('application/x-gzip', null), + 'gzip' => array('application/x-gzip', null), + 'html' => array('text/html', 'text/plain'), + 'htm' => array('text/html', 'text/plain'), + 'ical' => array('text/calendar', null), + 'ics' => array('text/calendar', null), + 'impress' => array('text/impress', null), + 'jpeg' => array('image/jpeg', null), + 'jpg' => array('image/jpeg', null), + 'js' => array('application/javascript', 'text/plain'), + 'json' => array('application/json', 'text/plain'), + 'keynote' => array('application/x-iwork-keynote-sffkey', null), + 'kra' => array('application/x-krita', null), + 'm2t' => array('video/mp2t', null), + 'm4v' => array('video/mp4', null), + 'markdown' => array('text/markdown', null), + 'mdown' => array('text/markdown', null), + 'md' => array('text/markdown', null), + 'mdb' => array('application/msaccess', null), + 'mdwn' => array('text/markdown', null), + 'mkv' => array('video/x-matroska', null), + 'mobi' => array('application/x-mobipocket-ebook', null), + 'mov' => array('video/quicktime', null), + 'mp3' => array('audio/mpeg', null), + 'mp4' => array('video/mp4', null), + 'mpeg' => array('video/mpeg', null), + 'mpg' => array('video/mpeg', null), + 'msi' => array('application/x-msi', null), + 'numbers' => array('application/x-iwork-numbers-sffnumbers', null), + 'odg' => array('application/vnd.oasis.opendocument.graphics', null), + 'odp' => array('application/vnd.oasis.opendocument.presentation', null), + 'ods' => array('application/vnd.oasis.opendocument.spreadsheet', null), + 'odt' => array('application/vnd.oasis.opendocument.text', null), + 'oga' => array('audio/ogg', null), + 'ogg' => array('audio/ogg', null), + 'ogv' => array('video/ogg', null), + 'otf' => array('font/opentype', null), + 'pages' => array('application/x-iwork-pages-sffpages', null), + 'pdf' => array('application/pdf', null), + 'php' => array('application/x-php', null), + 'pl' => array('application/x-perl', null), + 'png' => array('image/png', null), + 'ppt' => array('application/mspowerpoint', null), + 'pptx' => array('application/vnd.openxmlformats-officedocument.presentationml.presentation', null), + 'psd' => array('application/x-photoshop', null), + 'py' => array('text/x-python', null), + 'rar' => array('application/x-rar-compressed', null), + 'reveal' => array('text/reveal', null), + 'sgf' => array('application/sgf', null), + 'sh-lib' => array('text/x-shellscript', null), + 'sh' => array('text/x-shellscript', null), + 'svg' => array('image/svg+xml', 'text/plain'), + 'swf' => array('application/x-shockwave-flash', 'application/octet-stream'), + 'tar' => array('application/x-tar', null), + 'tar.gz' => array('application/x-compressed', null), + 'tex' => array('application/x-tex', null), + 'tgz' => array('application/x-compressed', null), + 'tiff' => array('image/tiff', null), + 'tif' => array('image/tiff', null), + 'ttf' => array('application/x-font-ttf', null), + 'txt' => array('text/plain', null), + 'vcard' => array('text/vcard', null), + 'vcf' => array('text/vcard', null), + 'wav' => array('audio/wav', null), + 'webm' => array('video/webm', null), + 'woff' => array('application/font-woff', null), + 'wmv' => array('video/x-ms-asf', null), + 'xcf' => array('application/x-gimp', null), + 'xls' => array('application/msexcel', null), + 'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', null), + 'xml' => array('application/xml', 'text/plain'), + 'zip' => array('application/zip', null), ); diff --git a/tests/lib/helper.php b/tests/lib/helper.php index 0943e6bc1b..5d319e40f0 100644 --- a/tests/lib/helper.php +++ b/tests/lib/helper.php @@ -71,6 +71,18 @@ class Test_Helper extends PHPUnit_Framework_TestCase { $this->assertEquals($result, $expected); } + function testGetSecureMimeType() { + $dir=OC::$SERVERROOT.'/tests/data'; + + $result = OC_Helper::getSecureMimeType('image/svg+xml'); + $expected = 'text/plain'; + $this->assertEquals($result, $expected); + + $result = OC_Helper::getSecureMimeType('image/png'); + $expected = 'image/png'; + $this->assertEquals($result, $expected); + } + function testGetFileNameMimeType() { $this->assertEquals('text/plain', OC_Helper::getFileNameMimeType('foo.txt')); $this->assertEquals('image/png', OC_Helper::getFileNameMimeType('foo.png')); -- GitLab From 2fb68c120b0b1f9c6d7ed9e3f10d595ffd080ddb Mon Sep 17 00:00:00 2001 From: Thomas Tanghus <thomas@tanghus.net> Date: Mon, 14 Apr 2014 18:21:19 +0200 Subject: [PATCH 064/187] Added explanation to mimetypes.list.php to avoid future confusion. --- lib/private/mimetypes.list.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index cdfd2ec0fd..07e2391c11 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -22,6 +22,10 @@ /** * Array mapping file extensions to mimetypes (in alphabetical order). + * + * The first index in the mime type array is the assumed correct mimetype + * and the second is either a secure alternative or null if the correct + * is considered secure. */ return array( '7z' => array('application/x-7z-compressed', null), -- GitLab From 2bda3f9ae0893e94bd07a9c8916adcf06aa4a597 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Mon, 14 Apr 2014 20:16:52 +0200 Subject: [PATCH 065/187] Use direct link instead of JS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Due to our CSP policy this link won’t work as it it considered as inline Javascript. This commit replaces the link with a static link to the files app. Reimplementation of #8067 - fixes #7742 --- lib/private/files.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/private/files.php b/lib/private/files.php index bfe6d3c02d..e6135c4329 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -231,7 +231,7 @@ class OC_Files { OC_Template::printErrorPage( $l->t('ZIP download is turned off.'), $l->t('Files need to be downloaded one by one.') - . '<br/><a href="javascript:history.back()">' . $l->t('Back to Files') . '</a>' + . '<br/><a href="'.OCP\Util::linkTo('files', '').'">' . $l->t('Back to Files') . '</a>' ); exit; } @@ -258,8 +258,7 @@ class OC_Files { OC_Template::printErrorPage( $l->t('Selected files too large to generate zip file.'), $l->t('Please download the files separately in smaller chunks or kindly ask your administrator.') - .'<br/><a href="javascript:history.back()">' - . $l->t('Back to Files') . '</a>' + . '<br/><a href="'.OCP\Util::linkTo('files', '').'">' . $l->t('Back to Files') . '</a>' ); exit; } -- GitLab From 91d40f5033a4b8d30147a0f9673375f7aeea4271 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk <victor.dubiniuk@gmail.com> Date: Mon, 14 Apr 2014 21:49:46 +0300 Subject: [PATCH 066/187] remove unneeded LOWER. Fixes #8202 --- lib/private/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 15e6643dfb..994a47011e 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -121,7 +121,7 @@ class OC_User_Database extends OC_User_Backend { */ public function setDisplayName($uid, $displayName) { if ($this->userExists($uid)) { - $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = ?'); + $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = LOWER(?)'); $query->execute(array($displayName, $uid)); return true; } else { -- GitLab From 7f77b08098426801bfede696a88671efc1f82d83 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Tue, 15 Apr 2014 15:48:02 +0200 Subject: [PATCH 067/187] Sort parameters and cast to int --- lib/private/route/cachingrouter.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php index 766c67c73a..6412ceb041 100644 --- a/lib/private/route/cachingrouter.php +++ b/lib/private/route/cachingrouter.php @@ -31,7 +31,8 @@ class CachingRouter extends Router { * @return string */ public function generate($name, $parameters = array(), $absolute = false) { - $key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . json_encode($parameters) . $absolute; + sort($parameters); + $key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . $name . json_encode($parameters) . intval($absolute); if ($this->cache->hasKey($key)) { return $this->cache->get($key); } else { -- GitLab From 02726acbc8bfd436dff97eaff575eb2572ecd48b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Tue, 15 Apr 2014 16:26:12 +0200 Subject: [PATCH 068/187] adding checks and log messages regarding the assets folder --- lib/private/templatelayout.php | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/lib/private/templatelayout.php b/lib/private/templatelayout.php index af17adb11c..0c0c8d9c8d 100644 --- a/lib/private/templatelayout.php +++ b/lib/private/templatelayout.php @@ -66,7 +66,7 @@ class OC_TemplateLayout extends OC_Template { } $versionParameter = '?v=' . md5(implode(OC_Util::getVersion())); - $useAssetPipeline = OC_Config::getValue('asset-pipeline.enabled', false); + $useAssetPipeline = $this->isAssetPipelineEnabled(); if ($useAssetPipeline) { $this->append( 'jsfiles', OC_Helper::linkToRoute('js_config') . $versionParameter); @@ -179,4 +179,33 @@ class OC_TemplateLayout extends OC_Template { sort($files); return hash('md5', implode('', $files)); } + + /** + * @return bool + */ + private function isAssetPipelineEnabled() { + // asset management enabled? + $useAssetPipeline = OC_Config::getValue('asset-pipeline.enabled', false); + if (!$useAssetPipeline) { + return false; + } + + // assets folder exists? + $assetDir = \OC::$SERVERROOT . '/assets'; + if (!is_dir($assetDir)) { + if (!mkdir($assetDir)) { + \OCP\Util::writeLog('assets', + "Folder <$assetDir> does not exist and/or could not be generated.", \OCP\Util::ERROR); + return false; + } + } + + // assets folder can be accessed? + if (!touch($assetDir."/.oc")) { + \OCP\Util::writeLog('assets', + "Folder <$assetDir> could not be accessed.", \OCP\Util::ERROR); + return false; + } + return $useAssetPipeline; + } } -- GitLab From 30168169b973eb1ca909a9a811b72d28588e1100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Tue, 15 Apr 2014 16:56:45 +0200 Subject: [PATCH 069/187] Flush the Buffer Early - right after head --- 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 b3e2f4da91..c519388fa3 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -30,7 +30,7 @@ ?> <?php endforeach; ?> </head> - + <?php flush(); ?> <body id="body-public"> <?php print_unescaped($_['content']); ?> </body> diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 5788d1d5bd..1f89e3f040 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -32,7 +32,7 @@ ?> <?php endforeach; ?> </head> - + <?php flush(); ?> <body id="body-login"> <div class="wrapper"><!-- for sticky footer --> <header><div id="header"> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index ba5f6ef9b5..a217446ca7 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -35,7 +35,7 @@ ?> <?php endforeach; ?> </head> - + <?php flush(); ?> <body id="<?php p($_['bodyid']);?>"> <noscript><div id="nojavascript"><div><?php print_unescaped($l->t('This application requires JavaScript to be enabled for correct operation. Please <a href="http://enable-javascript.com/" target="_blank">enable JavaScript</a> and re-load this interface.')); ?></div></div></noscript> <div id="notification-container"> -- GitLab From 64679b2e62909df9b3e493a0dc22151b5baae1a6 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Tue, 15 Apr 2014 17:46:48 +0200 Subject: [PATCH 070/187] Remove limit and offset manipulation when getting users or groups, because it does not work when more than one user or group backend. Fixing it would be too costly performancewise, so we switch back to the model used in OC 5: limit and offset are effective per backend, and not a general constraint --- lib/private/group/group.php | 12 ------------ lib/private/group/manager.php | 6 ------ lib/private/user/manager.php | 14 -------------- 3 files changed, 32 deletions(-) diff --git a/lib/private/group/group.php b/lib/private/group/group.php index a2b8a0dcbe..3efbb6e702 100644 --- a/lib/private/group/group.php +++ b/lib/private/group/group.php @@ -172,12 +172,6 @@ class Group { $users = array(); foreach ($this->backends as $backend) { $userIds = $backend->usersInGroup($this->gid, $search, $limit, $offset); - if (!is_null($limit)) { - $limit -= count($userIds); - } - if (!is_null($offset)) { - $offset -= count($userIds); - } $users += $this->getVerifiedUsers($userIds); if (!is_null($limit) and $limit <= 0) { return array_values($users); @@ -223,12 +217,6 @@ class Group { } else { $userIds = $backend->usersInGroup($this->gid, $search, $limit, $offset); } - if (!is_null($limit)) { - $limit -= count($userIds); - } - if (!is_null($offset)) { - $offset -= count($userIds); - } $users = $this->getVerifiedUsers($userIds); if (!is_null($limit) and $limit <= 0) { return array_values($users); diff --git a/lib/private/group/manager.php b/lib/private/group/manager.php index 9b433b64fd..f591bd32ab 100644 --- a/lib/private/group/manager.php +++ b/lib/private/group/manager.php @@ -134,12 +134,6 @@ class Manager extends PublicEmitter { $groups = array(); foreach ($this->backends as $backend) { $groupIds = $backend->getGroups($search, $limit, $offset); - if (!is_null($limit)) { - $limit -= count($groupIds); - } - if (!is_null($offset)) { - $offset -= count($groupIds); - } foreach ($groupIds as $groupId) { $groups[$groupId] = $this->getGroupObject($groupId); } diff --git a/lib/private/user/manager.php b/lib/private/user/manager.php index a2ad9d1770..14698452e8 100644 --- a/lib/private/user/manager.php +++ b/lib/private/user/manager.php @@ -175,13 +175,6 @@ class Manager extends PublicEmitter { if (is_array($backendUsers)) { foreach ($backendUsers as $uid) { $users[] = $this->getUserObject($uid, $backend); - if (!is_null($limit)) { - $limit--; - } - if (!is_null($offset) and $offset > 0) { - $offset--; - } - } } } @@ -211,13 +204,6 @@ class Manager extends PublicEmitter { if (is_array($backendUsers)) { foreach ($backendUsers as $uid => $displayName) { $users[] = $this->getUserObject($uid, $backend); - if (!is_null($limit)) { - $limit--; - } - if (!is_null($offset) and $offset > 0) { - $offset--; - } - } } } -- GitLab From 450de0091abe137110d57005280ff56fa2914b92 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Tue, 15 Apr 2014 17:53:57 +0200 Subject: [PATCH 071/187] adjust tests accordingly --- tests/lib/group/group.php | 2 +- tests/lib/group/manager.php | 2 +- tests/lib/user/manager.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/lib/group/group.php b/tests/lib/group/group.php index 147532f994..990f8ecc1d 100644 --- a/tests/lib/group/group.php +++ b/tests/lib/group/group.php @@ -287,7 +287,7 @@ class Group extends \PHPUnit_Framework_TestCase { ->will($this->returnValue(array('user2'))); $backend2->expects($this->once()) ->method('usersInGroup') - ->with('group1', 'user', 1, 0) + ->with('group1', 'user', 2, 1) ->will($this->returnValue(array('user1'))); $users = $group->searchUsers('user', 2, 1); diff --git a/tests/lib/group/manager.php b/tests/lib/group/manager.php index 90f0e1b35e..a03997c58e 100644 --- a/tests/lib/group/manager.php +++ b/tests/lib/group/manager.php @@ -254,7 +254,7 @@ class Manager extends \PHPUnit_Framework_TestCase { $backend2 = $this->getMock('\OC_Group_Database'); $backend2->expects($this->once()) ->method('getGroups') - ->with('1', 1, 0) + ->with('1', 2, 1) ->will($this->returnValue(array('group12'))); $backend2->expects($this->any()) ->method('groupExists') diff --git a/tests/lib/user/manager.php b/tests/lib/user/manager.php index ad1ac9e12f..8ca0f94c6f 100644 --- a/tests/lib/user/manager.php +++ b/tests/lib/user/manager.php @@ -210,7 +210,7 @@ class Manager extends \PHPUnit_Framework_TestCase { $backend2 = $this->getMock('\OC_User_Dummy'); $backend2->expects($this->once()) ->method('getUsers') - ->with($this->equalTo('fo'), $this->equalTo(1), $this->equalTo(0)) + ->with($this->equalTo('fo'), $this->equalTo(3), $this->equalTo(1)) ->will($this->returnValue(array('foo3'))); $manager = new \OC\User\Manager(); -- GitLab From bad41c05b80f22954d88120fa220b13cd5de5c4f Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Mon, 14 Apr 2014 17:39:29 +0200 Subject: [PATCH 072/187] Fix PHPdoc in user_ldap using scrutinizer patch --- apps/user_ldap/group_ldap.php | 11 +++++++++++ apps/user_ldap/lib/access.php | 4 ++-- apps/user_ldap/lib/connection.php | 3 +++ apps/user_ldap/lib/proxy.php | 3 +++ apps/user_ldap/lib/wizard.php | 4 ++-- apps/user_ldap/lib/wizardresult.php | 3 +++ 6 files changed, 24 insertions(+), 4 deletions(-) diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 40d9dec141..3b5f377e10 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -88,6 +88,10 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { return $isInGroup; } + /** + * @param string $dnGroup + * @param array|null &$seen + */ private function _groupMembers($dnGroup, &$seen = null) { if ($seen === null) { $seen = array(); @@ -163,6 +167,10 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { return $groups; } + /** + * @param string $dn + * @param array|null &$seen + */ private function getGroupsByMember($dn, &$seen = null) { if ($seen === null) { $seen = array(); @@ -454,6 +462,9 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface { return $allGroups; } + /** + * @param string $group + */ public function groupMatchesFilter($group) { return (strripos($group, $this->groupSearch) !== false); } diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 4d187bab8d..383583fce3 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -923,8 +923,8 @@ class Access extends LDAPUtility { /** * @brief escapes (user provided) parts for LDAP filter - * @param String $input, the provided value - * @returns the escaped string + * @param string $input, the provided value + * @return the escaped string */ public function escapeFilterPart($input) { $search = array('*', '\\', '(', ')'); diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 08ac4ac626..173c4ebcc2 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -134,6 +134,9 @@ class Connection extends LDAPUtility { return $this->ldapConnectionRes; } + /** + * @param string|null $key + */ private function getCacheKey($key) { $prefix = 'LDAP-'.$this->configID.'-'.$this->configPrefix.'-'; if(is_null($key)) { diff --git a/apps/user_ldap/lib/proxy.php b/apps/user_ldap/lib/proxy.php index b27233bcd1..0eb294eb7a 100644 --- a/apps/user_ldap/lib/proxy.php +++ b/apps/user_ldap/lib/proxy.php @@ -80,6 +80,9 @@ abstract class Proxy { return $result; } + /** + * @param string|null $key + */ private function getCacheKey($key) { $prefix = 'LDAP-Proxy-'; if(is_null($key)) { diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 3854af617c..8ddee8c760 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -485,7 +485,7 @@ class Wizard extends LDAPUtility { /** * @brief sets the found value for the configuration key in the WizardResult * as well as in the Configuration instance - * @param $key the configuration key + * @param string $key the configuration key * @param $value the (detected) value * @return null * @@ -1000,7 +1000,7 @@ class Wizard extends LDAPUtility { /** * @brief appends a list of values fr * @param $result resource, the return value from ldap_get_attributes - * @param $attribute string, the attribute values to look for + * @param string $attribute the attribute values to look for * @param &$known array, new values will be appended here * @return int, state on of the class constants LRESULT_PROCESSED_OK, * LRESULT_PROCESSED_INVALID or LRESULT_PROCESSED_SKIP diff --git a/apps/user_ldap/lib/wizardresult.php b/apps/user_ldap/lib/wizardresult.php index 542f106cad..9c154503f5 100644 --- a/apps/user_ldap/lib/wizardresult.php +++ b/apps/user_ldap/lib/wizardresult.php @@ -36,6 +36,9 @@ class WizardResult { $this->markedChange = true; } + /** + * @param string $key + */ public function addOptions($key, $values) { if(!is_array($values)) { $values = array($values); -- GitLab From 83e8981e246384de3b9d206a5dcf1109ce421005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Tue, 15 Apr 2014 21:39:13 +0200 Subject: [PATCH 073/187] add link to further discussion about that folder check --- apps/files/js/file-upload.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 516812563a..3879aa6588 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -243,6 +243,7 @@ OC.Upload = { } // in case folder drag and drop is not supported file will point to a directory + // http://stackoverflow.com/a/20448357 if (!file.type && file.size%4096 === 0 && file.size <= 102400) { try { reader = new FileReader(); -- GitLab From a4b7f5155fbd0c66fa418199305fccd5c2e7bb31 Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Tue, 15 Apr 2014 22:55:20 +0200 Subject: [PATCH 074/187] Fix PHPdoc in lib/private using scrutinizer patch --- lib/private/app.php | 17 +++++++++++------ lib/private/cache/file.php | 2 +- lib/private/connector/sabre/directory.php | 1 + lib/private/filechunking.php | 7 ++++--- lib/private/files/storage/common.php | 3 +++ lib/private/files/storage/mappedlocal.php | 3 +++ lib/private/image.php | 6 +++--- lib/private/request.php | 4 ++-- lib/private/route/route.php | 6 ++++++ lib/private/route/router.php | 7 +++++++ lib/private/urlgenerator.php | 3 +-- 11 files changed, 42 insertions(+), 17 deletions(-) diff --git a/lib/private/app.php b/lib/private/app.php index 58bf67c1d4..c5fcad8f00 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -459,9 +459,11 @@ class OC_App{ return false; } /** - * Get the directory for the given app. - * If the app is defined in multiple directories, the first one is taken. (false if not found) - */ + * Get the directory for the given app. + * If the app is defined in multiple directories, the first one is taken. (false if not found) + * @param string $appid + * @return string|false + */ public static function getAppPath($appid) { if( ($dir = self::findAppInDirectories($appid)) != false) { return $dir['path'].'/'.$appid; @@ -470,9 +472,11 @@ class OC_App{ } /** - * Get the path for the given app on the access - * If the app is defined in multiple directories, the first one is taken. (false if not found) - */ + * Get the path for the given app on the access + * If the app is defined in multiple directories, the first one is taken. (false if not found) + * @param string $appid + * @return string|false + */ public static function getAppWebPath($appid) { if( ($dir = self::findAppInDirectories($appid)) != false) { return OC::$WEBROOT.$dir['url'].'/'.$appid; @@ -482,6 +486,7 @@ class OC_App{ /** * get the last version of the app, either from appinfo/version or from appinfo/info.xml + * @param string $appid * @return string */ public static function getAppVersion($appid) { diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index 2fd77c437f..feee9cc32b 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -14,7 +14,7 @@ class File { /** * Returns the cache storage for the logged in user - * @return cache storage + * @return \OC\Files\View cache storage */ protected function getStorage() { if (isset($this->storage)) { diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 3ed9e94d69..70f45aa1e7 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -105,6 +105,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * Returns a specific child node, referenced by its name * * @param string $name + * @param OC\Files\FileInfo $info * @throws Sabre_DAV_Exception_FileNotFound * @return Sabre_DAV_INode */ diff --git a/lib/private/filechunking.php b/lib/private/filechunking.php index 1da02fc81e..990499e40b 100644 --- a/lib/private/filechunking.php +++ b/lib/private/filechunking.php @@ -70,7 +70,7 @@ class OC_FileChunking { * * @param string $f target path * - * @return assembled file size + * @return integer assembled file size * * @throws \OC\InsufficientStorageException when file could not be fully * assembled due to lack of free space @@ -91,7 +91,7 @@ class OC_FileChunking { /** * Returns the size of the chunks already present - * @return size in bytes + * @return integer size in bytes */ public function getCurrentSize() { $cache = $this->getCache(); @@ -159,7 +159,7 @@ class OC_FileChunking { * * @param string $path target path * - * @return assembled file size or false if file could not be created + * @return boolean assembled file size or false if file could not be created * * @throws \OC\InsufficientStorageException when file could not be fully * assembled due to lack of free space @@ -216,5 +216,6 @@ class OC_FileChunking { return false; } } + return false; } } diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 33b8549ff7..8a263d4ce1 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -363,6 +363,9 @@ abstract class Common implements \OC\Files\Storage\Storage { return false; } + /** + * @param string $path + */ protected function getCachedFile($path) { if (!isset($this->cachedFiles[$path])) { $this->cachedFiles[$path] = $this->toTmpFile($path); diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index 94ee28ca76..75582fd6c8 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -360,6 +360,9 @@ class MappedLocal extends \OC\Files\Storage\Common{ $this->mapper->copy($fullPath1, $fullPath2); } + /** + * @param string $path + */ private function stripLeading($path) { if(strpos($path, '/') === 0) { $path = substr($path, 1); diff --git a/lib/private/image.php b/lib/private/image.php index f1b8acc41b..14aa64d12d 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -49,7 +49,7 @@ class OC_Image { /** * @brief Constructor. - * @param resource|string $imageref The path to a local file, a base64 encoded string or a resource created by + * @param resource|string $imageRef The path to a local file, a base64 encoded string or a resource created by * an imagecreate* function. * @return \OC_Image False on error */ @@ -79,7 +79,7 @@ class OC_Image { /** * @brief Returns the MIME type of the image or an empty string if no image is loaded. - * @return int + * @return string */ public function mimeType() { return $this->valid() ? $this->mimeType : ''; @@ -397,7 +397,7 @@ class OC_Image { /** * @brief Loads an image from a local file, a base64 encoded string or a resource created by an imagecreate* function. - * @param resource|string $imageref The path to a local file, a base64 encoded string or a resource created by an imagecreate* function or a file resource (file handle ). + * @param resource|string $imageRef The path to a local file, a base64 encoded string or a resource created by an imagecreate* function or a file resource (file handle ). * @return resource|false An image resource or false on error */ public function load($imageRef) { diff --git a/lib/private/request.php b/lib/private/request.php index 7cbbb0676b..93cb322f1b 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -31,7 +31,7 @@ class OC_Request { * of trusted domains. If no trusted domains have been configured, returns * true. * This is used to prevent Host Header Poisoning. - * @param string $host + * @param string $domain * @return bool true if the given domain is trusted or if no trusted domains * have been configured */ @@ -76,7 +76,7 @@ class OC_Request { /** * Returns the overwritehost setting from the config if set and * if the overwrite condition is met - * @return overwritehost value or null if not defined or the defined condition + * @return string|null overwritehost value or null if not defined or the defined condition * isn't met */ public static function getOverwriteHost() { diff --git a/lib/private/route/route.php b/lib/private/route/route.php index 6ade9ec15f..df80facf9c 100644 --- a/lib/private/route/route.php +++ b/lib/private/route/route.php @@ -25,6 +25,7 @@ class Route extends SymfonyRoute implements IRoute { /** * Specify POST as the method to use with this route + * @return \OC\Route\Route */ public function post() { $this->method('POST'); @@ -33,6 +34,7 @@ class Route extends SymfonyRoute implements IRoute { /** * Specify GET as the method to use with this route + * @return \OC\Route\Route */ public function get() { $this->method('GET'); @@ -41,6 +43,7 @@ class Route extends SymfonyRoute implements IRoute { /** * Specify PUT as the method to use with this route + * @return \OC\Route\Route */ public function put() { $this->method('PUT'); @@ -49,6 +52,7 @@ class Route extends SymfonyRoute implements IRoute { /** * Specify DELETE as the method to use with this route + * @return \OC\Route\Route */ public function delete() { $this->method('DELETE'); @@ -57,6 +61,7 @@ class Route extends SymfonyRoute implements IRoute { /** * Specify PATCH as the method to use with this route + * @return \OC\Route\Route */ public function patch() { $this->method('PATCH'); @@ -120,6 +125,7 @@ class Route extends SymfonyRoute implements IRoute { * The action to execute when this route matches, includes a file like * it is called directly * @param $file + * @return void */ public function actionInclude($file) { $function = create_function('$param', diff --git a/lib/private/route/router.php b/lib/private/route/router.php index fa0ad6ab95..f7900362be 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -81,6 +81,9 @@ class Router implements IRouter { return $this->routingFiles; } + /** + * @return string + */ public function getCacheKey() { if (!isset($this->cacheKey)) { $files = $this->getRoutingFiles(); @@ -94,6 +97,7 @@ class Router implements IRouter { /** * loads the api routes + * @return void */ public function loadRoutes($app = null) { if ($this->loaded) { @@ -152,6 +156,7 @@ class Router implements IRouter { * Sets the collection to use for adding routes * * @param string $name Name of the collection to use. + * @return void */ public function useCollection($name) { $this->collection = $this->getCollection($name); @@ -177,6 +182,7 @@ class Router implements IRouter { * * @param string $url The url to find * @throws \Exception + * @return void */ public function match($url) { if (substr($url, 0, 6) === '/apps/') { @@ -207,6 +213,7 @@ class Router implements IRouter { /** * Get the url generator + * @return \Symfony\Component\Routing\Generator\UrlGenerator * */ public function getGenerator() { diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 260eeb1510..c28e6a7cb4 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -32,9 +32,8 @@ class URLGenerator implements IURLGenerator { * @brief Creates an url using a defined route * @param $route * @param array $parameters - * @return * @internal param array $args with param=>value, will be appended to the returned url - * @returns string the url + * @return string the url * * Returns a url to the given app and file. */ -- GitLab From cc8a4511fea5108cd088d49a27cb34a59d7d59e5 Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Tue, 15 Apr 2014 18:00:38 +0200 Subject: [PATCH 075/187] Fix PHPdoc in lib/public using scrutinizer patch --- lib/public/route/iroute.php | 6 ++++++ lib/public/route/irouter.php | 6 ++++++ lib/public/template.php | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/lib/public/route/iroute.php b/lib/public/route/iroute.php index 66fdb84182..d5610e762a 100644 --- a/lib/public/route/iroute.php +++ b/lib/public/route/iroute.php @@ -10,6 +10,7 @@ namespace OCP\Route; interface IRoute { /** * Specify PATCH as the method to use with this route + * @return \OCP\Route\IRoute */ public function patch(); @@ -26,21 +27,25 @@ interface IRoute { * it is called directly * * @param $file + * @return void */ public function actionInclude($file); /** * Specify GET as the method to use with this route + * @return \OCP\Route\IRoute */ public function get(); /** * Specify POST as the method to use with this route + * @return \OCP\Route\IRoute */ public function post(); /** * Specify DELETE as the method to use with this route + * @return \OCP\Route\IRoute */ public function delete(); @@ -74,6 +79,7 @@ interface IRoute { /** * Specify PUT as the method to use with this route + * @return \OCP\Route\IRoute */ public function put(); } diff --git a/lib/public/route/irouter.php b/lib/public/route/irouter.php index 125cd29e81..1c003c7b4b 100644 --- a/lib/public/route/irouter.php +++ b/lib/public/route/irouter.php @@ -17,10 +17,14 @@ interface IRouter { */ public function getRoutingFiles(); + /** + * @return string + */ public function getCacheKey(); /** * loads the api routes + * @return void */ public function loadRoutes($app = null); @@ -28,6 +32,7 @@ interface IRouter { * Sets the collection to use for adding routes * * @param string $name Name of the collection to use. + * @return void */ public function useCollection($name); @@ -47,6 +52,7 @@ interface IRouter { * * @param string $url The url to find * @throws \Exception + * @return void */ public function match($url); diff --git a/lib/public/template.php b/lib/public/template.php index 9a994c1bea..6cc984b12d 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -67,7 +67,7 @@ function preview_icon( $path ) { * Returns the path to the preview of the image. * @param string $path of file * @param string $token - * @return link to the preview + * @return string link to the preview */ function publicPreview_icon ( $path, $token ) { return(\publicPreview_icon( $path, $token )); -- GitLab From 23f2c48a43b2bc96370ec6b6411e6a86f705d12f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Wed, 16 Apr 2014 01:57:34 -0400 Subject: [PATCH 076/187] [tx-robot] updated from transifex --- apps/files_external/l10n/ca.php | 7 ++ apps/files_trashbin/l10n/ar.php | 4 +- apps/files_trashbin/l10n/bg_BG.php | 4 +- apps/files_trashbin/l10n/ca.php | 4 +- apps/files_trashbin/l10n/cs_CZ.php | 4 +- apps/files_trashbin/l10n/cy_GB.php | 4 +- apps/files_trashbin/l10n/da.php | 4 +- apps/files_trashbin/l10n/de.php | 4 +- apps/files_trashbin/l10n/de_CH.php | 4 +- apps/files_trashbin/l10n/de_DE.php | 4 +- apps/files_trashbin/l10n/el.php | 4 +- apps/files_trashbin/l10n/en_GB.php | 4 +- apps/files_trashbin/l10n/eo.php | 4 +- apps/files_trashbin/l10n/es.php | 4 +- apps/files_trashbin/l10n/es_AR.php | 4 +- apps/files_trashbin/l10n/es_MX.php | 4 +- apps/files_trashbin/l10n/et_EE.php | 4 +- apps/files_trashbin/l10n/eu.php | 4 +- apps/files_trashbin/l10n/fa.php | 4 +- apps/files_trashbin/l10n/fi_FI.php | 4 +- apps/files_trashbin/l10n/fr.php | 4 +- apps/files_trashbin/l10n/gl.php | 4 +- apps/files_trashbin/l10n/he.php | 4 +- apps/files_trashbin/l10n/hu_HU.php | 4 +- apps/files_trashbin/l10n/id.php | 4 +- apps/files_trashbin/l10n/it.php | 4 +- apps/files_trashbin/l10n/ja.php | 4 +- apps/files_trashbin/l10n/ka_GE.php | 4 +- apps/files_trashbin/l10n/ko.php | 4 +- apps/files_trashbin/l10n/lt_LT.php | 4 +- apps/files_trashbin/l10n/lv.php | 4 +- apps/files_trashbin/l10n/mk.php | 4 +- apps/files_trashbin/l10n/ms_MY.php | 4 +- apps/files_trashbin/l10n/nb_NO.php | 4 +- apps/files_trashbin/l10n/nl.php | 4 +- apps/files_trashbin/l10n/nn_NO.php | 4 +- apps/files_trashbin/l10n/pl.php | 4 +- apps/files_trashbin/l10n/pt_BR.php | 4 +- apps/files_trashbin/l10n/pt_PT.php | 4 +- apps/files_trashbin/l10n/ru.php | 4 +- apps/files_trashbin/l10n/sk_SK.php | 4 +- apps/files_trashbin/l10n/sl.php | 4 +- apps/files_trashbin/l10n/sq.php | 4 +- apps/files_trashbin/l10n/sv.php | 4 +- apps/files_trashbin/l10n/th_TH.php | 4 +- apps/files_trashbin/l10n/uk.php | 4 +- apps/files_trashbin/l10n/vi.php | 4 +- apps/files_trashbin/l10n/zh_CN.php | 4 +- apps/files_trashbin/l10n/zh_TW.php | 4 +- apps/user_ldap/l10n/ca.php | 3 + core/l10n/ca.php | 1 + l10n/ar/core.po | 98 +++++++++++++------------- l10n/ar/files.po | 50 +++++++------- l10n/ar/files_trashbin.po | 26 +++---- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/ast/core.po | 46 ++++++------- l10n/ast/files.po | 50 +++++++------- l10n/ast/files_trashbin.po | 4 +- l10n/ast/settings.po | 4 +- l10n/ast/user_ldap.po | 4 +- l10n/be/core.po | 98 +++++++++++++------------- l10n/be/files.po | 50 +++++++------- l10n/be/files_trashbin.po | 28 ++++---- l10n/be/settings.po | 4 +- l10n/be/user_ldap.po | 4 +- l10n/bg_BG/core.po | 98 +++++++++++++------------- l10n/bg_BG/files.po | 50 +++++++------- l10n/bg_BG/files_trashbin.po | 28 ++++---- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 98 +++++++++++++------------- l10n/bn_BD/files.po | 50 +++++++------- l10n/bn_BD/files_trashbin.po | 28 ++++---- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/ca/core.po | 102 ++++++++++++++-------------- l10n/ca/files.po | 50 +++++++------- l10n/ca/files_external.po | 30 ++++---- l10n/ca/files_trashbin.po | 28 ++++---- l10n/ca/lib.po | 36 +++++----- l10n/ca/settings.po | 16 ++--- l10n/ca/user_ldap.po | 12 ++-- l10n/cs_CZ/core.po | 8 +-- l10n/cs_CZ/files.po | 50 +++++++------- l10n/cs_CZ/files_trashbin.po | 28 ++++---- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 98 +++++++++++++------------- l10n/cy_GB/files.po | 50 +++++++------- l10n/cy_GB/files_trashbin.po | 28 ++++---- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 98 +++++++++++++------------- l10n/da/files.po | 50 +++++++------- l10n/da/files_trashbin.po | 28 ++++---- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 46 ++++++------- l10n/de/files.po | 50 +++++++------- l10n/de/files_trashbin.po | 28 ++++---- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_CH/core.po | 98 +++++++++++++------------- l10n/de_CH/files.po | 50 +++++++------- l10n/de_CH/files_trashbin.po | 28 ++++---- l10n/de_CH/settings.po | 4 +- l10n/de_CH/user_ldap.po | 4 +- l10n/de_DE/core.po | 46 ++++++------- l10n/de_DE/files.po | 50 +++++++------- l10n/de_DE/files_trashbin.po | 28 ++++---- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 98 +++++++++++++------------- l10n/el/files.po | 50 +++++++------- l10n/el/files_trashbin.po | 28 ++++---- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en_GB/core.po | 98 +++++++++++++------------- l10n/en_GB/files.po | 50 +++++++------- l10n/en_GB/files_trashbin.po | 28 ++++---- l10n/en_GB/settings.po | 4 +- l10n/en_GB/user_ldap.po | 4 +- l10n/eo/core.po | 98 +++++++++++++------------- l10n/eo/files.po | 50 +++++++------- l10n/eo/files_trashbin.po | 28 ++++---- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 98 +++++++++++++------------- l10n/es/files.po | 50 +++++++------- l10n/es/files_trashbin.po | 26 +++---- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 98 +++++++++++++------------- l10n/es_AR/files.po | 50 +++++++------- l10n/es_AR/files_trashbin.po | 28 ++++---- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/es_CL/core.po | 98 +++++++++++++------------- l10n/es_CL/files.po | 50 +++++++------- l10n/es_CL/files_trashbin.po | 28 ++++---- l10n/es_CL/settings.po | 4 +- l10n/es_CL/user_ldap.po | 4 +- l10n/es_MX/core.po | 98 +++++++++++++------------- l10n/es_MX/files.po | 50 +++++++------- l10n/es_MX/files_trashbin.po | 28 ++++---- l10n/es_MX/settings.po | 4 +- l10n/es_MX/user_ldap.po | 4 +- l10n/et_EE/core.po | 98 +++++++++++++------------- l10n/et_EE/files.po | 50 +++++++------- l10n/et_EE/files_trashbin.po | 28 ++++---- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 98 +++++++++++++------------- l10n/eu/files.po | 50 +++++++------- l10n/eu/files_trashbin.po | 28 ++++---- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 98 +++++++++++++------------- l10n/fa/files.po | 50 +++++++------- l10n/fa/files_trashbin.po | 28 ++++---- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 98 +++++++++++++------------- l10n/fi_FI/files.po | 50 +++++++------- l10n/fi_FI/files_trashbin.po | 28 ++++---- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 8 +-- l10n/fr/files.po | 50 +++++++------- l10n/fr/files_trashbin.po | 28 ++++---- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 98 +++++++++++++------------- l10n/gl/files.po | 50 +++++++------- l10n/gl/files_trashbin.po | 28 ++++---- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 98 +++++++++++++------------- l10n/he/files.po | 50 +++++++------- l10n/he/files_trashbin.po | 28 ++++---- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 98 +++++++++++++------------- l10n/hi/files.po | 50 +++++++------- l10n/hi/files_trashbin.po | 28 ++++---- l10n/hi/settings.po | 4 +- l10n/hi/user_ldap.po | 4 +- l10n/hr/core.po | 98 +++++++++++++------------- l10n/hr/files.po | 50 +++++++------- l10n/hr/files_trashbin.po | 28 ++++---- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 98 +++++++++++++------------- l10n/hu_HU/files.po | 50 +++++++------- l10n/hu_HU/files_trashbin.po | 28 ++++---- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/ia/core.po | 98 +++++++++++++------------- l10n/ia/files.po | 50 +++++++------- l10n/ia/files_trashbin.po | 28 ++++---- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 98 +++++++++++++------------- l10n/id/files.po | 50 +++++++------- l10n/id/files_trashbin.po | 28 ++++---- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 98 +++++++++++++------------- l10n/is/files.po | 50 +++++++------- l10n/is/files_trashbin.po | 28 ++++---- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 8 +-- l10n/it/files.po | 50 +++++++------- l10n/it/files_trashbin.po | 28 ++++---- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja/core.po | 98 +++++++++++++------------- l10n/ja/files.po | 50 +++++++------- l10n/ja/files_trashbin.po | 28 ++++---- l10n/ja/settings.po | 4 +- l10n/ja/user_ldap.po | 4 +- l10n/ka_GE/core.po | 98 +++++++++++++------------- l10n/ka_GE/files.po | 50 +++++++------- l10n/ka_GE/files_trashbin.po | 28 ++++---- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/km/core.po | 100 +++++++++++++-------------- l10n/km/files.po | 50 +++++++------- l10n/km/files_trashbin.po | 28 ++++---- l10n/km/settings.po | 4 +- l10n/km/user_ldap.po | 6 +- l10n/ko/core.po | 98 +++++++++++++------------- l10n/ko/files.po | 50 +++++++------- l10n/ko/files_trashbin.po | 28 ++++---- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 98 +++++++++++++------------- l10n/ku_IQ/files.po | 50 +++++++------- l10n/ku_IQ/files_trashbin.po | 28 ++++---- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 98 +++++++++++++------------- l10n/lb/files.po | 50 +++++++------- l10n/lb/files_trashbin.po | 28 ++++---- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 98 +++++++++++++------------- l10n/lt_LT/files.po | 50 +++++++------- l10n/lt_LT/files_trashbin.po | 28 ++++---- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 98 +++++++++++++------------- l10n/lv/files.po | 50 +++++++------- l10n/lv/files_trashbin.po | 28 ++++---- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 98 +++++++++++++------------- l10n/mk/files.po | 50 +++++++------- l10n/mk/files_trashbin.po | 28 ++++---- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 98 +++++++++++++------------- l10n/ms_MY/files.po | 50 +++++++------- l10n/ms_MY/files_trashbin.po | 28 ++++---- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/nb_NO/core.po | 98 +++++++++++++------------- l10n/nb_NO/files.po | 50 +++++++------- l10n/nb_NO/files_trashbin.po | 28 ++++---- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nl/core.po | 98 +++++++++++++------------- l10n/nl/files.po | 50 +++++++------- l10n/nl/files_trashbin.po | 28 ++++---- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 98 +++++++++++++------------- l10n/nn_NO/files.po | 50 +++++++------- l10n/nn_NO/files_trashbin.po | 28 ++++---- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 98 +++++++++++++------------- l10n/oc/files.po | 50 +++++++------- l10n/oc/files_trashbin.po | 28 ++++---- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pa/core.po | 98 +++++++++++++------------- l10n/pa/files.po | 50 +++++++------- l10n/pa/files_trashbin.po | 28 ++++---- l10n/pa/settings.po | 4 +- l10n/pa/user_ldap.po | 4 +- l10n/pl/core.po | 98 +++++++++++++------------- l10n/pl/files.po | 50 +++++++------- l10n/pl/files_trashbin.po | 28 ++++---- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 8 +-- l10n/pt_BR/files.po | 50 +++++++------- l10n/pt_BR/files_trashbin.po | 28 ++++---- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 98 +++++++++++++------------- l10n/pt_PT/files.po | 50 +++++++------- l10n/pt_PT/files_trashbin.po | 28 ++++---- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 98 +++++++++++++------------- l10n/ro/files.po | 50 +++++++------- l10n/ro/files_trashbin.po | 28 ++++---- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 98 +++++++++++++------------- l10n/ru/files.po | 50 +++++++------- l10n/ru/files_trashbin.po | 28 ++++---- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 98 +++++++++++++------------- l10n/si_LK/files.po | 50 +++++++------- l10n/si_LK/files_trashbin.po | 28 ++++---- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk_SK/core.po | 98 +++++++++++++------------- l10n/sk_SK/files.po | 50 +++++++------- l10n/sk_SK/files_trashbin.po | 28 ++++---- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 98 +++++++++++++------------- l10n/sl/files.po | 50 +++++++------- l10n/sl/files_trashbin.po | 28 ++++---- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 98 +++++++++++++------------- l10n/sq/files.po | 50 +++++++------- l10n/sq/files_trashbin.po | 28 ++++---- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 98 +++++++++++++------------- l10n/sr/files.po | 50 +++++++------- l10n/sr/files_trashbin.po | 28 ++++---- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 98 +++++++++++++------------- l10n/sr@latin/files.po | 50 +++++++------- l10n/sr@latin/files_trashbin.po | 28 ++++---- l10n/sr@latin/settings.po | 4 +- l10n/sr@latin/user_ldap.po | 4 +- l10n/sv/core.po | 98 +++++++++++++------------- l10n/sv/files.po | 50 +++++++------- l10n/sv/files_trashbin.po | 28 ++++---- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/ta_LK/core.po | 98 +++++++++++++------------- l10n/ta_LK/files.po | 50 +++++++------- l10n/ta_LK/files_trashbin.po | 28 ++++---- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 98 +++++++++++++------------- l10n/te/files.po | 50 +++++++------- l10n/te/files_trashbin.po | 28 ++++---- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 6 +- l10n/templates/files.pot | 48 ++++++------- 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 | 10 +-- l10n/templates/private.pot | 10 +-- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 98 +++++++++++++------------- l10n/th_TH/files.po | 50 +++++++------- l10n/th_TH/files_trashbin.po | 28 ++++---- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 8 +-- l10n/tr/files.po | 50 +++++++------- l10n/tr/files_trashbin.po | 4 +- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 98 +++++++++++++------------- l10n/ug/files.po | 50 +++++++------- l10n/ug/files_trashbin.po | 28 ++++---- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 98 +++++++++++++------------- l10n/uk/files.po | 50 +++++++------- l10n/uk/files_trashbin.po | 28 ++++---- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 98 +++++++++++++------------- l10n/ur_PK/files.po | 50 +++++++------- l10n/ur_PK/files_trashbin.po | 28 ++++---- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 98 +++++++++++++------------- l10n/vi/files.po | 50 +++++++------- l10n/vi/files_trashbin.po | 28 ++++---- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN/core.po | 98 +++++++++++++------------- l10n/zh_CN/files.po | 50 +++++++------- l10n/zh_CN/files_trashbin.po | 28 ++++---- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 98 +++++++++++++------------- l10n/zh_HK/files.po | 50 +++++++------- l10n/zh_HK/files_trashbin.po | 28 ++++---- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 98 +++++++++++++------------- l10n/zh_TW/files.po | 50 +++++++------- l10n/zh_TW/files_trashbin.po | 28 ++++---- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/ca.php | 1 + settings/l10n/ca.php | 5 ++ 422 files changed, 6408 insertions(+), 6391 deletions(-) diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index 50b6f55231..8411d79306 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -6,12 +6,19 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox", "Error configuring Google Drive storage" => "Error en configurar l'emmagatzemament Google Drive", "Saved" => "Desat", +"<b>Note:</b> " => "<b>Nota:</b> ", +" and " => "i", +"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Nota:</b> El suport cURL no està activat o instal·lat a PHP. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", +"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Nota:</b> El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", +"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Nota:</b> %s no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", "External Storage" => "Emmagatzemament extern", "Folder name" => "Nom de la carpeta", "External storage" => "Emmagatzemament extern", "Configuration" => "Configuració", "Options" => "Options", +"Available for" => "Disponible per", "Add storage" => "Afegeix emmagatzemament", +"No user or group" => "Sense usuaris o grups", "All Users" => "Tots els usuaris", "Groups" => "Grups", "Users" => "Usuaris", diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 4084daa127..b3abc7df86 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "تعذّر استرجاع %s ", "Deleted files" => "حذف الملفات", "Error" => "خطأ", +"Deleted Files" => "الملفات المحذوفه", "restored" => "تمت الاستعادة", "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", "Name" => "اسم", "Restore" => "استعيد", "Deleted" => "تم الحذف", -"Delete" => "إلغاء", -"Deleted Files" => "الملفات المحذوفه" +"Delete" => "إلغاء" ); $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;"; diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 2f1521feaa..8c9e658068 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -3,11 +3,11 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Невъзможно перманентното изтриване на %s", "Couldn't restore %s" => "Невъзможно възтановяване на %s", "Error" => "Грешка", +"Deleted Files" => "Изтрити файлове", "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", "Name" => "Име", "Restore" => "Възтановяване", "Deleted" => "Изтрито", -"Delete" => "Изтриване", -"Deleted Files" => "Изтрити файлове" +"Delete" => "Изтриване" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index c99b414c7a..196d6ac00a 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "No s'ha pogut restaurar %s", "Deleted files" => "Fitxers esborrats", "Error" => "Error", +"Deleted Files" => "Fitxers eliminats", "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" +"Delete" => "Esborra" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index e0c46c5137..ed795582e4 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Nelze obnovit %s", "Deleted files" => "Odstraněné soubory", "Error" => "Chyba", +"Deleted Files" => "Smazané soubory", "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" +"Delete" => "Smazat" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index bc8a318733..7b1405777d 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -4,11 +4,11 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Methwyd adfer %s", "Deleted files" => "Ffeiliau ddilewyd", "Error" => "Gwall", +"Deleted Files" => "Ffeiliau Ddilewyd", "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" +"Delete" => "Dileu" ); $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 831ba6067d..7f7b65bca2 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Kunne ikke gendanne %s", "Deleted files" => "Slettede filer", "Error" => "Fejl", +"Deleted Files" => "Slettede 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" +"Delete" => "Slet" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index fd00b4c433..4778e159e1 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "Deleted files" => "Gelöschte Dateien", "Error" => "Fehler", +"Deleted Files" => "Gelöschte 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" +"Delete" => "Löschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/de_CH.php b/apps/files_trashbin/l10n/de_CH.php index 665be5d5ee..603d82f5c7 100644 --- a/apps/files_trashbin/l10n/de_CH.php +++ b/apps/files_trashbin/l10n/de_CH.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "Deleted files" => "Gelöschte Dateien", "Error" => "Fehler", +"Deleted Files" => "Gelöschte 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" +"Delete" => "Löschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 665be5d5ee..603d82f5c7 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "Deleted files" => "Gelöschte Dateien", "Error" => "Fehler", +"Deleted Files" => "Gelöschte 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" +"Delete" => "Löschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 567958de90..23b23ed93a 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", "Deleted files" => "Διαγραμμένα αρχεία", "Error" => "Σφάλμα", +"Deleted Files" => "Διαγραμμένα Αρχεία", "restored" => "επαναφέρθηκαν", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", "Name" => "Όνομα", "Restore" => "Επαναφορά", "Deleted" => "Διαγραμμένα", -"Delete" => "Διαγραφή", -"Deleted Files" => "Διαγραμμένα Αρχεία" +"Delete" => "Διαγραφή" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/en_GB.php b/apps/files_trashbin/l10n/en_GB.php index 04abf2d6f2..a660b4b1ca 100644 --- a/apps/files_trashbin/l10n/en_GB.php +++ b/apps/files_trashbin/l10n/en_GB.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Couldn't restore %s", "Deleted files" => "Deleted files", "Error" => "Error", +"Deleted Files" => "Deleted 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" +"Delete" => "Delete" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index b3248406f5..d644f0f642 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Ne povis restaŭriĝi %s", "Deleted files" => "Forigitaj dosieroj", "Error" => "Eraro", +"Deleted Files" => "Forigitaj dosieroj", "restored" => "restaŭrita", "Nothing in here. Your trash bin is empty!" => "Nenio estas ĉi tie. Via rubujo malplenas!", "Name" => "Nomo", "Restore" => "Restaŭri", "Deleted" => "Forigita", -"Delete" => "Forigi", -"Deleted Files" => "Forigitaj dosieroj" +"Delete" => "Forigi" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index 79f122ad35..c0dc6bb45c 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "No se puede restaurar %s", "Deleted files" => "Archivos eliminados", "Error" => "Error", +"Deleted Files" => "Archivos Eliminados", "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" +"Delete" => "Eliminar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index 50b337b814..b354dd656b 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "No se pudo restaurar %s", "Deleted files" => "Archivos borrados", "Error" => "Error", +"Deleted Files" => "Archivos eliminados", "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" +"Delete" => "Borrar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es_MX.php b/apps/files_trashbin/l10n/es_MX.php index 79f122ad35..c0dc6bb45c 100644 --- a/apps/files_trashbin/l10n/es_MX.php +++ b/apps/files_trashbin/l10n/es_MX.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "No se puede restaurar %s", "Deleted files" => "Archivos eliminados", "Error" => "Error", +"Deleted Files" => "Archivos Eliminados", "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" +"Delete" => "Eliminar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 69ed5cee76..69d20cb195 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "%s ei saa taastada", "Deleted files" => "Kustutatud failid", "Error" => "Viga", +"Deleted Files" => "Kustutatud failid", "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" +"Delete" => "Kustuta" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 648aaaf738..42476bccfe 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Ezin izan da %s berreskuratu", "Deleted files" => "Ezabatutako fitxategiak", "Error" => "Errorea", +"Deleted Files" => "Ezabatutako Fitxategiak", "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" +"Delete" => "Ezabatu" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 40cdec8a48..407524eb62 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -4,11 +4,11 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "%s را نمی توان بازگرداند", "Deleted files" => "فایل های حذف شده", "Error" => "خطا", +"Deleted Files" => "فایلهای حذف شده", "Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", "Name" => "نام", "Restore" => "بازیابی", "Deleted" => "حذف شده", -"Delete" => "حذف", -"Deleted Files" => "فایلهای حذف شده" +"Delete" => "حذف" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index e7b62dbb43..da56baf0bd 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Kohteen %s palautus epäonnistui", "Deleted files" => "Poistetut tiedostot", "Error" => "Virhe", +"Deleted Files" => "Poistetut tiedostot", "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" +"Delete" => "Poista" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 9e74657fc1..b71fbea96a 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Impossible de restaurer %s", "Deleted files" => "Fichiers supprimés", "Error" => "Erreur", +"Deleted Files" => "Fichiers effacés", "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" +"Delete" => "Supprimer" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index bf26936be0..fe74ab34a0 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Non foi posíbel restaurar %s", "Deleted files" => "Ficheiros eliminados", "Error" => "Erro", +"Deleted Files" => "Ficheiros eliminados", "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" +"Delete" => "Eliminar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 6d2d184bec..6cdc5c05c9 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "לא ניתן לשחזר את %s", "Deleted files" => "קבצים שנמחקו", "Error" => "שגיאה", +"Deleted Files" => "קבצים שנמחקו", "restored" => "שוחזר", "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", "Name" => "שם", "Restore" => "שחזור", "Deleted" => "נמחק", -"Delete" => "מחיקה", -"Deleted Files" => "קבצים שנמחקו" +"Delete" => "מחיקה" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 69a2f5d5d4..2912821d96 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Nem sikerült %s visszaállítása", "Deleted files" => "Törölt fájlok", "Error" => "Hiba", +"Deleted Files" => "Törölt fájlok", "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" +"Delete" => "Törlés" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 11e1675074..166b9aa811 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -4,11 +4,11 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Tidak dapat memulihkan %s", "Deleted files" => "Berkas yang dihapus", "Error" => "Galat", +"Deleted Files" => "Berkas yang Dihapus", "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" +"Delete" => "Hapus" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 739dda2456..057305ac51 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Impossibile ripristinare %s", "Deleted files" => "File eliminati", "Error" => "Errore", +"Deleted Files" => "File eliminati", "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" +"Delete" => "Elimina" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ja.php b/apps/files_trashbin/l10n/ja.php index 0aab7d0575..13ca95e6fb 100644 --- a/apps/files_trashbin/l10n/ja.php +++ b/apps/files_trashbin/l10n/ja.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "%s を復元できませんでした", "Deleted files" => "ゴミ箱", "Error" => "エラー", +"Deleted Files" => "ゴミ箱", "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", "Name" => "名前", "Restore" => "復元", "Deleted" => "削除済み", -"Delete" => "削除", -"Deleted Files" => "ゴミ箱" +"Delete" => "削除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index f36bbea59b..4e3ad4260e 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -4,11 +4,11 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", "Deleted files" => "წაშლილი ფაილები", "Error" => "შეცდომა", +"Deleted Files" => "წაშლილი ფაილები", "Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", "Name" => "სახელი", "Restore" => "აღდგენა", "Deleted" => "წაშლილი", -"Delete" => "წაშლა", -"Deleted Files" => "წაშლილი ფაილები" +"Delete" => "წაშლა" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index f95d143245..d9d8707080 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "%s을(를) 복원할 수 없습니다", "Deleted files" => "삭제된 파일", "Error" => "오류", +"Deleted Files" => "삭제된 파일", "restored" => "복원됨", "Nothing in here. Your trash bin is empty!" => "휴지통이 비어 있습니다!", "Name" => "이름", "Restore" => "복원", "Deleted" => "삭제됨", -"Delete" => "삭제", -"Deleted Files" => "삭제된 파일" +"Delete" => "삭제" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 07325665d7..2bf545483f 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Nepavyko atkurti %s", "Deleted files" => "Ištrinti failai", "Error" => "Klaida", +"Deleted Files" => "Ištrinti failai", "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" +"Delete" => "Ištrinti" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index d356b34437..c173d05014 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Nevarēja atjaunot %s", "Deleted files" => "Dzēstās datnes", "Error" => "Kļūda", +"Deleted Files" => "Dzēstās datnes", "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" +"Delete" => "Dzēst" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index f025a13db1..910b11e21e 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Не можеше да се поврати %s", "Deleted files" => "Избришани датотеки", "Error" => "Грешка", +"Deleted Files" => "Избришани датотеки", "restored" => "повратени", "Nothing in here. Your trash bin is empty!" => "Тука нема ништо. Вашата корпа за отпадоци е празна!", "Name" => "Име", "Restore" => "Поврати", "Deleted" => "Избришан", -"Delete" => "Избриши", -"Deleted Files" => "Избришани датотеки" +"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 e772131391..f084f58465 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -3,12 +3,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Tidak dapat menghapuskan %s secara kekal", "Couldn't restore %s" => "Tidak dapat memulihkan %s", "Error" => "Ralat", +"Deleted Files" => "Fail Dihapus", "restored" => "dipulihkan", "Nothing in here. Your trash bin is empty!" => "Tiada apa disini. Tong sampah anda kosong!", "Name" => "Nama", "Restore" => "Pulihkan", "Deleted" => "Dihapuskan", -"Delete" => "Padam", -"Deleted Files" => "Fail Dihapus" +"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 66e61ee72a..2293e5a4e7 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Kunne ikke gjenopprette %s", "Deleted files" => "Slettede filer", "Error" => "Feil", +"Deleted Files" => "Slettede filer", "restored" => "gjenopprettet", "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" => "Slettede filer" +"Delete" => "Slett" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 533571fd9e..c8fb128853 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Kon %s niet herstellen", "Deleted files" => "Verwijderde bestanden", "Error" => "Fout", +"Deleted Files" => "Verwijderde 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" +"Delete" => "Verwijder" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 9282d9d49d..38bc64e6ce 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Klarte ikkje gjenoppretta %s", "Deleted files" => "Sletta filer", "Error" => "Feil", +"Deleted Files" => "Sletta 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" +"Delete" => "Slett" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index 5075dad271..b961efd7da 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Nie można przywrócić %s", "Deleted files" => "Pliki usunięte", "Error" => "Błąd", +"Deleted Files" => "Usunięte pliki", "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" +"Delete" => "Usuń" ); $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/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index 300235452b..d524d8879e 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Não foi possível restaurar %s", "Deleted files" => "Arquivos apagados", "Error" => "Erro", +"Deleted Files" => "Arquivos Apagados", "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" +"Delete" => "Excluir" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 69f83e8a0e..94dd0eb707 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Não foi possível restaurar %s", "Deleted files" => "Ficheiros eliminados", "Error" => "Erro", +"Deleted Files" => "Ficheiros Apagados", "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" +"Delete" => "Eliminar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 3210ad7290..d10369b9ca 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "%s не может быть восстановлен", "Deleted files" => "Удалённые файлы", "Error" => "Ошибка", +"Deleted Files" => "Удаленные файлы", "restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", "Name" => "Имя", "Restore" => "Восстановить", "Deleted" => "Удалён", -"Delete" => "Удалить", -"Deleted Files" => "Удаленные файлы" +"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/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 6bb39bb89d..3badd3a423 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Nemožno obnoviť %s", "Deleted files" => "Zmazané súbory", "Error" => "Chyba", +"Deleted Files" => "Zmazané súbory", "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" +"Delete" => "Zmazať" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index ca69c8d278..08da9b1c6e 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Ni mogoče obnoviti %s", "Deleted files" => "Izbrisane datoteke", "Error" => "Napaka", +"Deleted Files" => "Izbrisane datoteke", "restored" => "obnovljeno", "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" +"Delete" => "Izbriši" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index 10354e4540..60d16f9b91 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Nuk munda ta rivendos %s", "Deleted files" => "Skedarë të fshirë ", "Error" => "Veprim i gabuar", +"Deleted Files" => "Skedarë të eliminuar", "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" +"Delete" => "Elimino" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index ec9de3acaa..fd9ca8653f 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Kunde inte återställa %s", "Deleted files" => "Raderade filer", "Error" => "Fel", +"Deleted Files" => "Raderade 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" +"Delete" => "Radera" ); $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 65fd081a95..857737c59e 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -1,11 +1,11 @@ <?php $TRANSLATIONS = array( "Error" => "ข้อผิดพลาด", +"Deleted Files" => "ไฟล์ที่ลบทิ้ง", "Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่", "Name" => "ชื่อ", "Restore" => "คืนค่า", "Deleted" => "ลบแล้ว", -"Delete" => "ลบ", -"Deleted Files" => "ไฟล์ที่ลบทิ้ง" +"Delete" => "ลบ" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index 19d4bda97c..fa523fa321 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Неможливо відновити %s", "Deleted files" => "Видалено файлів", "Error" => "Помилка", +"Deleted Files" => "Видалено Файлів", "restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", "Name" => "Ім'я", "Restore" => "Відновити", "Deleted" => "Видалено", -"Delete" => "Видалити", -"Deleted Files" => "Видалено Файлів" +"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/vi.php b/apps/files_trashbin/l10n/vi.php index 81a0cf14bc..57c82cea5f 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "Không thể khôi phục %s", "Deleted files" => "File đã bị xóa", "Error" => "Lỗi", +"Deleted Files" => "File đã xóa", "restored" => "khôi phục", "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" +"Delete" => "Xóa" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index 4c61aef33b..ef6a63b295 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "无法恢复%s", "Deleted files" => "已删除文件", "Error" => "错误", +"Deleted Files" => "已删除文件", "restored" => "已恢复", "Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", "Name" => "名称", "Restore" => "恢复", "Deleted" => "已删除", -"Delete" => "删除", -"Deleted Files" => "已删除文件" +"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 65b954e2c6..c42d70790e 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -4,12 +4,12 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "無法還原 %s", "Deleted files" => "回收桶", "Error" => "錯誤", +"Deleted Files" => "已刪除的檔案", "restored" => "已還原", "Nothing in here. Your trash bin is empty!" => "您的回收桶是空的!", "Name" => "名稱", "Restore" => "還原", "Deleted" => "已刪除", -"Delete" => "刪除", -"Deleted Files" => "已刪除的檔案" +"Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 98b1cf7464..c8542586f8 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Port de la còpia de seguretat (rèplica)", "Disable Main Server" => "Desactiva el servidor principal", "Only connect to the replica server." => "Connecta només al servidor rèplica.", +"Case insensitive LDAP server (Windows)" => "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)", "Turn off SSL certificate validation." => "Desactiva la validació de certificat SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No es recomana, useu-ho només com a prova! Importeu el certificat SSL del servidor LDAP al servidor %s només si la connexió funciona amb aquesta opció.", "Cache Time-To-Live" => "Memòria de cau Time-To-Live", @@ -89,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Associació membres-grup", "Nested Groups" => "Grups imbricats", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Quan està activat, els grups que contenen grups estan permesos. (Només funciona si l'atribut del grup membre conté DNs.)", +"Paging chunksize" => "Mida de la pàgina", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Mida usada per cerques LDAP paginades que podrien retornar respostes de volcat com enumeració d'usuari o grup. (Establint-ho a 0 desactiva les cerques LDAP paginades en aquestes situacions.)", "Special Attributes" => "Atributs especials", "Quota Field" => "Camp de quota", "Quota Default" => "Quota per defecte", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 214b2eac0e..65c28fa0a6 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -51,6 +51,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicte de fitxer","{count} conflictes de fitxer"), "One file conflict" => "Un fitxer en conflicte", "New Files" => "Fitxers nous", +"Already existing files" => "Fitxers que ja existeixen", "Which files do you want to keep?" => "Quin fitxer voleu conservar?", "If you select both versions, the copied file will have a number added to its name." => "Si seleccioneu les dues versions, el fitxer copiat tindrà un número afegit al seu nom.", "Cancel" => "Cancel·la", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index a92aaeb919..13b1456ee6 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,11 +144,11 @@ msgstr "إعدادات" msgid "Saving..." msgstr "جاري الحفظ..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -158,7 +158,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -168,15 +168,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "اليوم" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -186,11 +186,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -200,43 +200,43 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "سنة مضت" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "اختيار" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "نعم" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "لا" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "موافق" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" @@ -246,45 +246,45 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "الغاء" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -316,12 +316,12 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "خطأ" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -385,71 +385,71 @@ msgstr "مشاركة عبر البريد الإلكتروني:" msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "مجموعة" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "إنشاء" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "تحديث" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "حذف" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "مشاركة" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "تحذير" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index e26fbcba88..bba1a48aeb 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -129,15 +129,15 @@ msgstr "خطأ في الكتابة على القرص الصلب" msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "مسار غير صحيح." @@ -145,53 +145,53 @@ msgstr "مسار غير صحيح." msgid "Files" msgstr "الملفات" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "تعذر الحصول على نتيجة من الخادم" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -215,19 +215,19 @@ msgstr "حدث خطأ أثناء نقل الملف" msgid "Error" msgstr "خطأ" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "لا يوجد مجلدات %n" @@ -237,7 +237,7 @@ msgstr[3] "عدد قليل من مجلدات %n" msgstr[4] "عدد كبير من مجلدات %n" msgstr[5] "مجلدات %n" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "لا يوجد ملفات %n" @@ -247,11 +247,11 @@ msgstr[3] "قليل من ملفات %n" msgstr[4] "الكثير من ملفات %n" msgstr[5] " ملفات %n" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} و {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "لا يوجد ملفات %n لتحميلها" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index e354e3194c..7576d350df 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Abderraouf Mehdi Bouhali <armbouhali@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -28,38 +28,38 @@ msgstr "تعذّر حذف%s بشكل دائم" msgid "Couldn't restore %s" msgstr "تعذّر استرجاع %s " -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "حذف الملفات" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "خطأ" +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "الملفات المحذوفه" + #: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "تمت الاستعادة" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "لا يوجد شيء هنا. سلة المهملات خاليه." -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "اسم" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "استعيد" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "تم الحذف" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "إلغاء" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "الملفات المحذوفه" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index a060a79595..51b0b345d5 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 099e7c57db..78fa4f951e 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index 145a76968a..ecfeb86a37 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 21:20+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Tornes Llume <l.lumex03.tornes@gmail.com>\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -259,11 +259,11 @@ msgstr "Continuar" msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +295,12 @@ msgstr "Compartíu" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Fallu" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -364,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupu" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Dexar de compartir" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notificar per corréu" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "pue editar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "control d'accesu" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "crear" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "xubir" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "desaniciar" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "compartir" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Contraseña protexida" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Corréu unviáu" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 03e4145bb3..260501f288 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 21:20+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Nome inválidu, los caráuteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" nun tán permitíos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Fallu al escribir al discu" msgid "Not enough storage available" msgstr "Nun hai abondu espaciu disponible" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "Ficheros" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:587 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "Fallu" -#: js/filelist.js:251 js/filelist.js:1101 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:614 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:777 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:802 js/filelist.js:879 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:803 js/filelist.js:880 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:810 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1040 js/filelist.js:1078 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index 180064b93c..eb1ea8604a 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 21:20+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 4213935f56..b8bc741fae 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index b5982a3e6e..3c4a00ce67 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index 08ac377c07..b5a06d9d8f 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,11 +143,11 @@ msgstr "Налады" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "Секунд таму" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "Сёння" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "Ўчора" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "У мінулым месяцы" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,43 +191,43 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "Месяцаў таму" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "У мінулым годзе" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "Гадоў таму" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Выбар" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Так" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Не" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Добра" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" @@ -235,45 +235,45 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -305,12 +305,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Памылка" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -374,71 +374,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index 66801d9d68..4fd29da162 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,19 +213,19 @@ msgstr "" msgid "Error" msgstr "Памылка" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -233,7 +233,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -241,11 +241,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index f2257d6e56..4ec9ee447f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Памылка" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 5e4b84e797..8351820bb2 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index 1f41c805ed..3699adf2e0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 53dbcfcf82..1927b8fb96 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,127 +143,127 @@ msgstr "Настройки" msgid "Saving..." msgstr "Записване..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "днес" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "вчера" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "последният месец" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "Преди месеци" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "последната година" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "последните години" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Избери" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Не" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Добре" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Отказ" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +295,12 @@ msgstr "Споделено" msgid "Share" msgstr "Споделяне" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Грешка при споделяне" @@ -364,71 +364,71 @@ msgstr "сподели по поща:" msgid "No people found" msgstr "Не са открити хора" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "група" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Допълнително споделяне не е разрешено" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Споделено в {item} с {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Премахни споделяне" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "може да променя" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "контрол на достъпа" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "създаване" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "Обновяване" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "Изтриване" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "Споделяне" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Защитено с парола" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Грешка при премахване на дата за изтичане" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Грепка при поставяне на дата за изтичане" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Изпращам ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Пощата е изпратена" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Внимание" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index d5beae81b1..117a237fae 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Възникна проблем при запис в диска" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Невалидна директория." @@ -143,53 +143,53 @@ msgstr "Невалидна директория." msgid "Files" msgstr "Файлове" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 03d913bf79..32fb65bc9f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +28,38 @@ msgstr "Невъзможно перманентното изтриване на msgid "Couldn't restore %s" msgstr "Невъзможно възтановяване на %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Изтрити файлове" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Няма нищо. Кофата е празна!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Име" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Възтановяване" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Изтрито" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Изтриване" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Изтрити файлове" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 2664120b65..bfc3c97823 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 8d6fc12500..3e1f1eac0b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index de3aa80787..190c189d63 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,127 +142,127 @@ msgstr "নিয়ামকসমূহ" msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "আজ" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "গত মাস" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "গত বছর" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "বছর পূর্বে" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "বেছে নিন" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "হ্যাঁ" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "না" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "তথাস্তু" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "বাতির" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +294,12 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "সমস্যা" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -363,71 +363,71 @@ msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "সতর্কবাণী" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 3d85042f65..1ddd8d6c74 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "ডিস্কে লিখতে ব্যর্থ" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -143,53 +143,53 @@ msgstr "ভুল ডিরেক্টরি" msgid "Files" msgstr "ফাইল" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "সমস্যা" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 33003d82e3..b75add2cf3 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "সমস্যা" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "রাম" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "মুছে" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 714eea5d5d..ab60e1d0ce 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index fc175fe7b1..cfc7d39bbf 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 17d16afe76..b935d5a08e 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"Last-Translator: rogerc\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" @@ -145,127 +145,127 @@ msgstr "Configuració" msgid "Saving..." msgstr "Desant..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "avui" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ahir" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "el mes passat" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "l'any passat" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "anys enrere" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Escull" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Error en carregar la plantilla de càrrega de fitxers: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "No" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "D'acord" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Error en carregar la plantilla de missatge: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} conflicte de fitxer" msgstr[1] "{count} conflictes de fitxer" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Un fitxer en conflicte" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Fitxers nous" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Fitxers que ja existeixen" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Quin fitxer voleu conservar?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si seleccioneu les dues versions, el fitxer copiat tindrà un número afegit al seu nom." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancel·la" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continua" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(selecciona-ho tot)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} seleccionats)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Error en carregar la plantilla de fitxer existent" @@ -297,12 +297,12 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Error en compartir" @@ -366,71 +366,71 @@ msgstr "Comparteix per correu electrònic" msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grup" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notifica per correu electrònic" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "pot editar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "control d'accés" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "crea" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "actualitza" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "elimina" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "comparteix" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Avís" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 058d688ffe..59335d109d 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta de destí s'ha mogut o eliminat." @@ -131,15 +131,15 @@ msgstr "Ha fallat en escriure al disc" msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -147,53 +147,53 @@ msgstr "Directori no vàlid." msgid "Files" msgstr "Fitxers" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "No es pot pujar {filename} perquè és una carpeta o té 0 bytes" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Mida total del fitxer {size1} excedeix el límit de pujada {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "No hi ha resposta del servidor." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "L'URL no pot ser buit" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "No s'ha pogut crear el fitxer" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Error en obtenir la URL" @@ -217,35 +217,35 @@ msgstr "Error en moure el fitxer" msgid "Error" msgstr "Error" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "No es pot canviar el nom de fitxer" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Error en esborrar el fitxer." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" msgstr[1] "%n fitxers" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Pujant %n fitxer" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 66fb2423fb..a898377bcd 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-15 08:30+0000\n" +"Last-Translator: rogerc\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" @@ -43,34 +43,34 @@ msgstr "Error en configurar l'emmagatzemament Google Drive" msgid "Saved" msgstr "Desat" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " -msgstr "" +msgstr "<b>Nota:</b> " -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "i" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Nota:</b> El suport cURL no està activat o instal·lat a PHP. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Nota:</b> El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "<b>Nota:</b> %s no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li." #: templates/settings.php:2 msgid "External Storage" @@ -94,7 +94,7 @@ msgstr "Options" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Disponible per" #: templates/settings.php:32 msgid "Add storage" @@ -102,7 +102,7 @@ msgstr "Afegeix emmagatzemament" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Sense usuaris o grups" #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 75c3e9fb4a..936cd31894 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +28,38 @@ msgstr "No s'ha pogut esborrar permanentment %s" msgid "Couldn't restore %s" msgstr "No s'ha pogut restaurar %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Fitxers esborrats" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Error" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Fitxers eliminats" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "restaurat" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "La paperera està buida!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nom" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Recupera" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Eliminat" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Esborra" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Fitxers eliminats" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 7b5a5cd549..96a2ef9cb8 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-15 09:40+0000\n" +"Last-Translator: rogerc\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" @@ -290,68 +290,68 @@ msgstr "%s ha compartit »%s« amb tu" msgid "Could not find category \"%s\"" msgstr "No s'ha trobat la categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segons enrere" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "avui" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ahir" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "fa %n dia" msgstr[1] "fa %n dies" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "el mes passat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "l'any passat" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anys enrere" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Només els caràcters següents estan permesos en el nom d'usuari: \"a-z\", \"A-Z\", \"0-9\" i \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "El nom d'usuari ja està en ús" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 7ffe58d843..fad333300c 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"Last-Translator: rogerc\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" @@ -89,17 +89,17 @@ msgstr "No es pot afegir el grup" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Els fitxers s'han desencriptat amb èxit" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "No es poden desencriptar els fitxers. Comproveu owncloud.log o demaneu-ho a l'administrador." #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "No s'han pogut desencriptar els fitxers, comproveu la contrasenya i proveu-ho de nou" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -453,11 +453,11 @@ msgstr "L'últim cron s'ha executat el %s" msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "L'últim cron es va executar a %s. Fa més d'una hora, alguna cosa sembla que va malament." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "El cron encara no s'ha executat!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index aef03207a4..c3a103518c 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"Last-Translator: rogerc\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" @@ -339,7 +339,7 @@ msgstr "Connecta només al servidor rèplica." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." @@ -424,14 +424,14 @@ msgstr "Quan està activat, els grups que contenen grups estan permesos. (Només #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Mida de la pàgina" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Mida usada per cerques LDAP paginades que podrien retornar respostes de volcat com enumeració d'usuari o grup. (Establint-ho a 0 desactiva les cerques LDAP paginades en aquestes situacions.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8f7ae14b9d..d39979f547 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-14 04:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -271,11 +271,11 @@ msgstr "Pokračovat" msgid "(all selected)" msgstr "(vybráno vše)" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "(vybráno {count})" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Chyba při nahrávání šablony existence souboru" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index b50ebe55d7..8bc567a4dc 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Cílová složka byla přesunuta nebo smazána." @@ -135,15 +135,15 @@ msgstr "Zápis na disk selhal" msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -151,53 +151,53 @@ msgstr "Neplatný adresář" msgid "Files" msgstr "Soubory" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má velikost 0 bytů" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Celková velikost souboru {size1} překračuje povolenou velikost pro nahrávání {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Není dostatek místa pro uložení, velikost souboru je {size1}, zbývá pouze {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Nepodařilo se získat výsledek ze serveru." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL nemůže zůstat prázdná" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V osobní složce je název 'Shared' rezervovaný" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Nepodařilo se vytvořit soubor" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Chyba při načítání URL" @@ -221,37 +221,37 @@ msgstr "Chyba při přesunu souboru" msgid "Error" msgstr "Chyba" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Nepodařilo se přejmenovat soubor" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Chyba při mazání souboru." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" msgstr[1] "%n soubory" msgstr[2] "%n souborů" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávám %n soubor" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index cebf39ff8d..f704f7a49d 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 21:48+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -29,38 +29,38 @@ msgstr "Nelze trvale odstranit %s" msgid "Couldn't restore %s" msgstr "Nelze obnovit %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Odstraněné soubory" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Chyba" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Smazané soubory" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "obnoveno" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Žádný obsah. Váš koš je prázdný." -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Název" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Obnovit" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Smazáno" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Smazat" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Smazané soubory" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 9d72db957b..5618acb9b4 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-14 05:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 47968c19ee..634a01b88c 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-14 05:06+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: pstast <petr@stastny.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 2e8afc0dbc..d517e51708 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,11 +143,11 @@ msgstr "Gosodiadau" msgid "Saving..." msgstr "Yn cadw..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "heddiw" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ddoe" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,43 +191,43 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "y llynedd" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "blwyddyn yn ôl" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Dewisiwch" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ie" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Na" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Iawn" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" @@ -235,45 +235,45 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Diddymu" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -305,12 +305,12 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Gwall" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -374,71 +374,71 @@ msgstr "Rhannu drwy e-bost:" msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grŵp" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "creu" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "diweddaru" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "dileu" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "rhannu" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Anfonwyd yr e-bost" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Rhybudd" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index c030e6e275..ef9494360a 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Methwyd ysgrifennu i'r ddisg" msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." @@ -143,53 +143,53 @@ msgstr "Cyfeiriadur annilys." msgid "Files" msgstr "Ffeiliau" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Diddymwyd llwytho i fyny." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,19 +213,19 @@ msgstr "" msgid "Error" msgstr "Gwall" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -233,7 +233,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -241,11 +241,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 9d13eee108..dadbbbd9b1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "Methwyd dileu %s yn barhaol" msgid "Couldn't restore %s" msgstr "Methwyd adfer %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Gwall" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Ffeiliau Ddilewyd" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Enw" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Adfer" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Wedi dileu" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Dileu" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Ffeiliau Ddilewyd" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index b87749dd3c..8423265aa9 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 63aa7c5f7f..6b1cdbb2a5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 6a57c445c8..fe32f8309e 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -149,127 +149,127 @@ msgstr "Indstillinger" msgid "Saving..." msgstr "Gemmer..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "i dag" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "i går" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "sidste måned" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "måneder siden" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "sidste år" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Vælg" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Fejl ved indlæsning af filvælger skabelon: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nej" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Fejl ved indlæsning af besked skabelon: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} filkonflikt" msgstr[1] "{count} filkonflikter" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "En filkonflikt" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nye filer" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Hvilke filer ønsker du at beholde?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Hvis du vælger begge versioner, vil den kopierede fil få tilføjet et nummer til sit navn." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Annuller" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Videre" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(alle valgt)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} valgt)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Fejl ved inlæsning af; fil eksistere skabelon" @@ -301,12 +301,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Fejl" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Fejl under deling" @@ -370,71 +370,71 @@ msgstr "Del via email:" msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "gruppe" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "Giv besked med mail" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kan redigere" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "opret" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "opdater" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "slet" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "del" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-mail afsendt" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Advarsel" diff --git a/l10n/da/files.po b/l10n/da/files.po index e997c9ee8e..7308b09236 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Mappen er blevet slettet eller fjernet." @@ -132,15 +132,15 @@ msgstr "Fejl ved skrivning til disk." msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Upload fejlede. Kunne ikke hente filinformation." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -148,53 +148,53 @@ msgstr "Ugyldig mappe." msgid "Files" msgstr "Filer" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes." -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Den totale filstørrelse {size1} er større end uploadgrænsen {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Kunne ikke hente resultat fra server." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Navnet 'Shared' er reserveret i hjemmemappen." -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Kunne ikke oprette fil" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Kunne ikke oprette mappe" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Fejl ved URL" @@ -218,35 +218,35 @@ msgstr "Fejl ved flytning af fil" msgid "Error" msgstr "Fejl" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Kunne ikke omdøbe filen" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Fejl ved sletnign af fil." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploader %n fil" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 1c4ac09da9..6b4c9cc53b 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "Kunne ikke slette %s permanent" msgid "Couldn't restore %s" msgstr "Kunne ikke gendanne %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Slettede filer" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Fejl" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Slettede filer" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "Gendannet" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Intet at se her. Din papirkurv er tom!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Navn" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Gendan" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Slettet" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Slet" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Slettede filer" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 9ca89c1f9f..c1d8a6bf47 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 0ad1952c0f..fef82e070a 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 31ff35c916..ab11d78159 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 08:50+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -269,11 +269,11 @@ msgstr "Fortsetzen" msgid "(all selected)" msgstr "(Alle ausgewählt)" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} ausgewählt)" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" @@ -305,12 +305,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -374,71 +374,71 @@ msgstr "Über eine E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "Gruppe" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "erstellen" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "aktualisieren" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "löschen" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "teilen" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-Mail wurde verschickt" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Warnung" diff --git a/l10n/de/files.po b/l10n/de/files.po index d27a99c98f..9d5ef4125e 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Zielordner wurde verschoben oder gelöscht." @@ -135,15 +135,15 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -151,53 +151,53 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Die Gesamt-Größe {size1} überschreitet die Upload-Begrenzung {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Nicht genügend freier Speicherplatz, du möchtest {size1} hochladen, es sind jedoch nur noch {size2} verfügbar." -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" @@ -221,35 +221,35 @@ msgstr "Fehler beim Verschieben der Datei" msgid "Error" msgstr "Fehler" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 074fcb68e5..c6285cfd76 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Gelöschte Dateien" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, der Papierkorb ist leer!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Name" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "gelöscht" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Löschen" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Gelöschte Dateien" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 8f73c65cc2..9dcd7cf9ea 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 10:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index f581aad641..abb6529ad8 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 10:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index a64e658ce1..a8afc9f0ca 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -152,127 +152,127 @@ msgstr "Einstellungen" msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "Heute" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Auswählen" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nein" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Neue Dateien" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -304,12 +304,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -373,71 +373,71 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "Gruppe" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "erstellen" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "aktualisieren" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "löschen" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "teilen" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Warnung" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 1a7d78b247..3fb889a1c4 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -51,7 +51,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -136,15 +136,15 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -152,53 +152,53 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -222,35 +222,35 @@ msgstr "" msgid "Error" msgstr "Fehler" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n Dateien" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 6e38b3848b..3ef33e0c89 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -30,38 +30,38 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Gelöschte Dateien" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Name" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Gelöscht" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Löschen" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Gelöschte Dateien" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 5ed5677b35..b3db66ec50 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 58abb62b24..a994b7dbba 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 75bdf01c6a..665ae3cc10 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 08:50+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -269,11 +269,11 @@ msgstr "Fortsetzen" msgid "(all selected)" msgstr "(Alle ausgewählt)" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} ausgewählt)" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" @@ -305,12 +305,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -374,71 +374,71 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "Gruppe" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "erstellen" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "aktualisieren" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "löschen" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "teilen" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Warnung" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 87841fc3da..ad69e037e6 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -53,7 +53,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Ziel-Ordner wurde verschoben oder gelöscht." @@ -138,15 +138,15 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -154,53 +154,53 @@ msgstr "Ungültiges Verzeichnis." msgid "Files" msgstr "Dateien" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Die Gesamt-Größe {size1} überschreitet die Upload-Begrenzung {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Nicht genügend freier Speicherplatz, Sie möchten {size1} hochladen, es sind jedoch nur noch {size2} verfügbar." -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" @@ -224,35 +224,35 @@ msgstr "Fehler beim Verschieben der Datei" msgid "Error" msgstr "Fehler" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 29d7687f4f..4eced02e01 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Gelöschte Dateien" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Name" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Gelöscht" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Löschen" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Gelöschte Dateien" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index a3d2c9d70a..e70b8d6afd 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 10:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index be3a9259ee..52e75e4172 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 10:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index cc9851ee84..2e4e99bc8f 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -152,127 +152,127 @@ msgstr "Ρυθμίσεις" msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ώρα πριν" msgstr[1] "%n ώρες πριν" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "σήμερα" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "χτες" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ημέρα πριν" msgstr[1] "%n ημέρες πριν" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n μήνας πριν" msgstr[1] "%n μήνες πριν" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "χρόνια πριν" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Επιλέξτε" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Σφάλμα κατά την φόρτωση προτύπου επιλογέα αρχείων: {σφάλμα}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ναι" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Όχι" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Οκ" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Σφάλμα φόρτωσης προτύπου μηνυμάτων: {σφάλμα}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} αρχείο διαφέρει" msgstr[1] "{count} αρχεία διαφέρουν" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Ένα αρχείο διαφέρει" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Νέα Αρχεία" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Ποια αρχεία θέλετε να κρατήσετε;" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Εάν επιλέξετε και τις δυο εκδοχές, ένας αριθμός θα προστεθεί στο αντιγραφόμενο αρχείο." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Άκυρο" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Συνέχεια" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(όλα τα επιλεγμένα)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} επιλέχθησαν)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Σφάλμα κατά την φόρτωση του προτύπου ύπαρξης αρχείου" @@ -304,12 +304,12 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Σφάλμα" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -373,71 +373,71 @@ msgstr "Διαμοιρασμός μέσω email:" msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "ομάδα" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "ειδοποίηση με email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "δημιουργία" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "ενημέρωση" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "διαγραφή" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Το Email απεστάλη " -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Προειδοποίηση" diff --git a/l10n/el/files.po b/l10n/el/files.po index 152ba67cc8..12030b417f 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί." @@ -133,15 +133,15 @@ msgstr "Αποτυχία εγγραφής στο δίσκο" msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -149,53 +149,53 @@ msgstr "Μη έγκυρος φάκελος." msgid "Files" msgstr "Αρχεία" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Το συνολικό μέγεθος αρχείου {size1} υπερβαίνει το όριο μεταφόρτωσης {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Δεν υπάρχει αρκετός ελεύθερος χώρος, μεταφορτώνετε μέγεθος {size1} αλλά υπάρχει χώρος μόνο {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Αδυναμία λήψης αποτελέσματος από το διακομιστή." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "Η URL δεν πρέπει να είναι κενή" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Αδυναμία δημιουργίας αρχείου" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Αδυναμία δημιουργίας φακέλου" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Σφάλμα φόρτωσης URL" @@ -219,35 +219,35 @@ msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" msgid "Error" msgstr "Σφάλμα" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Αδυναμία μετονομασίας αρχείου" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Σφάλμα διαγραφής αρχείου." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" msgstr[1] "%n αρχεία" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{Κατάλογοι αρχείων} και {αρχεία}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Ανέβασμα %n αρχείου" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index ac7af8db54..c8d33b1aa1 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "Αδύνατη η μόνιμη διαγραφή του %s" msgid "Couldn't restore %s" msgstr "Αδυναμία επαναφοράς %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Διαγραμμένα αρχεία" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Σφάλμα" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Διαγραμμένα Αρχεία" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "επαναφέρθηκαν" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Όνομα" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Επαναφορά" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Διαγραμμένα" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Διαγραφή" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Διαγραμμένα Αρχεία" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 1c0ee4b025..652efd0b27 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index b4d3fa0005..59c79d16b9 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index bb299a375b..c1d3f0e57d 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 12:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -143,127 +143,127 @@ msgstr "Settings" msgid "Saving..." msgstr "Saving..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "today" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "yesterday" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "last month" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "months ago" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "last year" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "years ago" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Choose" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Error loading file picker template: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Yes" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "No" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Error loading message template: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} file conflict" msgstr[1] "{count} file conflicts" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "One file conflict" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "New Files" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Already existing files" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Which files do you wish to keep?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "If you select both versions, the copied file will have a number added to its name." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancel" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continue" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(all selected)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} selected)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Error loading file exists template" @@ -295,12 +295,12 @@ msgstr "Shared" msgid "Share" msgstr "Share" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -364,71 +364,71 @@ msgstr "Share via email:" msgid "No people found" msgstr "No people found" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "group" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Resharing is not allowed" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Shared in {item} with {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Unshare" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notify by email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "can edit" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "access control" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "create" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "update" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "delete" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "share" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Password protected" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email sent" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Warning" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index aa6ca243be..7f557cc15a 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "The target folder has been moved or deleted." @@ -128,15 +128,15 @@ msgstr "Failed to write to disk" msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Upload failed. Could not get file info." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Invalid directory." @@ -144,53 +144,53 @@ msgstr "Invalid directory." msgid "Files" msgstr "Files" -#: js/file-upload.js:247 +#: js/file-upload.js:254 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:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Total file size {size1} exceeds upload limit {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Not enough free space, you are uploading {size1} but only {size2} is left" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Upload cancelled." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Could not get result from server." -#: js/file-upload.js:477 +#: js/file-upload.js:490 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:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL cannot be empty" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} already exists" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Could not create file" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Could not create folder" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Error fetching URL" @@ -214,35 +214,35 @@ msgstr "Error moving file" msgid "Error" msgstr "Error" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Pending" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Error deleting file." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index 03c81a6e1a..ed08368d37 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" -"PO-Revision-Date: 2014-03-17 13:08+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -28,38 +28,38 @@ msgstr "Couldn't delete %s permanently" msgid "Couldn't restore %s" msgstr "Couldn't restore %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Deleted files" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Error" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Deleted Files" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "restored" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nothing in here. Your recycle bin is empty!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Name" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Restore" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Deleted" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Delete" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Deleted Files" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 33774c3efd..cc2da5a6ff 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index eafbc2431a..ff4d53a9b7 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 36bf5f5ca7..b8d7904c2a 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,127 +144,127 @@ msgstr "Agordo" msgid "Saving..." msgstr "Konservante..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "antaŭ %n minuto" msgstr[1] "antaŭ %n minutoj" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "antaŭ %n horo" msgstr[1] "antaŭ %n horoj" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hodiaŭ" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "antaŭ %n tago" msgstr[1] "antaŭ %n tagoj" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "lastamonate" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "antaŭ %n monato" msgstr[1] "antaŭ %n monatoj" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "lastajare" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "jaroj antaŭe" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Elekti" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Jes" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Akcepti" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} dosierkonflikto" msgstr[1] "{count} dosierkonfliktoj" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Unu dosierkonflikto" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Novaj dosieroj" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Kiujn dosierojn vi volas konservi?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se vi elektos ambaŭ eldonojn, la kopiota dosiero havos numeron aldonitan al sia nomo." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Nuligi" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(ĉiuj elektitas)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} elektitas)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -296,12 +296,12 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Eraro" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -365,71 +365,71 @@ msgstr "Kunhavigi per retpoŝto:" msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "avizi per retpoŝto" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "povas redakti" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "krei" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "forigi" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "kunhavigi" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Averto" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 832bb3b846..76864720d2 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -128,15 +128,15 @@ msgstr "Malsukcesis skribo al disko" msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -144,53 +144,53 @@ msgstr "Nevalida dosierujo." msgid "Files" msgstr "Dosieroj" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ne povis alŝutiĝi {filename} ĉar ĝi estas dosierujo aŭ ĝi havas 0 duumokojn" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Ne povis ekhaviĝi rezulto el la servilo." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "La URL ne povas malpleni" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Ne povis kreiĝi dosiero" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -214,35 +214,35 @@ msgstr "Eraris movo de dosiero" msgid "Error" msgstr "Eraro" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Ne povis alinomiĝi dosiero" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosierujo" msgstr[1] "%n dosierujoj" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosiero" msgstr[1] "%n dosieroj" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} kaj {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Alŝutatas %n dosiero" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 2da6d3501f..93392a0cd3 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Ne povis foriĝi %s por ĉiam" msgid "Couldn't restore %s" msgstr "Ne povis restaŭriĝi %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Eraro" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Forigitaj dosieroj" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "restaŭrita" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nenio estas ĉi tie. Via rubujo malplenas!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nomo" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Restaŭri" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Forigita" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Forigi" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Forigitaj dosieroj" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 1e6a1f5730..4956bdbd6f 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 4f72ee1214..a7ad8cb316 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 4aad3e3b44..7d5a15c84f 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 20:50+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -156,127 +156,127 @@ msgstr "Ajustes" msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hoy" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ayer" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "meses antes" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "el año pasado" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "años antes" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Seleccionar" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Error cargando plantilla del seleccionador de archivos: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "No" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Aceptar" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Error cargando plantilla del mensaje: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} conflicto de archivo" msgstr[1] "{count} conflictos de archivo" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "On conflicto de archivo" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nuevos Archivos" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Archivos ya existentes" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "¿Que archivos deseas mantener?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(seleccionados todos)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Error cargando plantilla de archivo existente" @@ -308,12 +308,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Error al compartir" @@ -377,71 +377,71 @@ msgstr "Compartir por correo electrónico:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notificar por correo electrónico" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "puede editar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "control de acceso" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "crear" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "actualizar" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "eliminar" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "compartir" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Precaución" diff --git a/l10n/es/files.po b/l10n/es/files.po index 4868b5dab3..e58112bd59 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -52,7 +52,7 @@ msgid "" "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta destino fue movida o eliminada." @@ -137,15 +137,15 @@ msgstr "Falló al escribir al disco" msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Directorio inválido." @@ -153,53 +153,53 @@ msgstr "Directorio inválido." msgid "Files" msgstr "Archivos" -#: js/file-upload.js:247 +#: js/file-upload.js:254 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:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "El tamaño total del archivo {size1} excede el límite {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "No hay suficiente espacio libre. Quiere subir {size1} pero solo quedan {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:477 +#: js/file-upload.js:490 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, la subida será cancelada." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta home, no se puede usar 'Shared'" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Error al descargar URL." @@ -223,35 +223,35 @@ msgstr "Error moviendo archivo" msgid "Error" msgstr "Error" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Error al borrar el archivo" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 2586fb2af3..47dd8c8dbe 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" -"PO-Revision-Date: 2014-03-28 06:24+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: victormce <victormce@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -29,38 +29,38 @@ msgstr "No se puede eliminar %s permanentemente" msgid "Couldn't restore %s" msgstr "No se puede restaurar %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Archivos eliminados" -#: js/trash.js:16 js/trash.js:108 js/trash.js:157 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Error" +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Archivos Eliminados" + #: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "recuperado" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nombre" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Eliminado" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Eliminar" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Archivos Eliminados" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index dbe7b97870..96c24139d3 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 17:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index c666da1305..b237b68fca 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 17:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index ad7d518ec1..2fd6e33653 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,127 +144,127 @@ msgstr "Configuración" msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hoy" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ayer" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "meses atrás" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "el año pasado" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "años atrás" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Elegir" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Error cargando la plantilla del selector de archivo: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "No" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Aceptar" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Error cargando la plantilla del mensaje: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "un archivo en conflicto" msgstr[1] "{count} archivos en conflicto" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Un archivo en conflicto" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nuevos archivos" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "¿Qué archivos deseas retener?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si tu seleccionas ambas versiones, el archivo copiado tendrá un número agregado a su nombre." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(todos están seleccionados)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Error cargando la plantilla de archivo existente" @@ -296,12 +296,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Error al compartir" @@ -365,71 +365,71 @@ msgstr "Compartir a través de e-mail:" msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notificar por correo" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "podés editar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "control de acceso" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "crear" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "actualizar" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "borrar" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "compartir" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "e-mail mandado" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Atención" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 4e4ff79596..fdd48c933e 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -131,15 +131,15 @@ msgstr "Error al escribir en el disco" msgid "Not enough storage available" msgstr "No hay suficiente almacenamiento" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Falló la carga. No se pudo encontrar el archivo subido." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Falló la carga. No se pudo obtener la información del archivo." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Directorio inválido." @@ -147,53 +147,53 @@ msgstr "Directorio inválido." msgid "Files" msgstr "Archivos" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Imposible cargar {filename} puesto que es un directoro o tiene 0 bytes." -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "No se pudo obtener resultados del servidor." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "La URL no puede estar vacía" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En el directorio inicial 'Shared' es un nombre de archivo reservado" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "No se pudo crear el directorio" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Error al obtener la URL" @@ -217,35 +217,35 @@ msgstr "Error moviendo el archivo" msgid "Error" msgstr "Error" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Error al borrar el archivo." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{carpetas} y {archivos}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 4e361d2114..2ee0526ef0 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "No fue posible borrar %s de manera permanente" msgid "Couldn't restore %s" msgstr "No se pudo restaurar %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Archivos borrados" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Error" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Archivos eliminados" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "recuperado" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada acá. ¡La papelera está vacía!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nombre" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Borrado" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Borrar" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Archivos eliminados" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 9b4824686f..748f37b09e 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 73731cacab..071e358695 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 911131ea81..34129f3ca7 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -143,127 +143,127 @@ msgstr "Configuración" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hoy" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ayer" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "mes anterior" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "meses antes" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "último año" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "años anteriores" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Choose" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Si" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "No" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +295,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Ocurrió un error mientras compartía" @@ -364,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index c46a2cb830..72fa40ee9c 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "Archivos" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/es_CL/files_trashbin.po b/l10n/es_CL/files_trashbin.po index e7ad1c4cb6..b63a2d60db 100644 --- a/l10n/es_CL/files_trashbin.po +++ b/l10n/es_CL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -27,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Error" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 872b168879..c490d88121 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po index 2885d87d48..c37ef034eb 100644 --- a/l10n/es_CL/user_ldap.po +++ b/l10n/es_CL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 10a4321b52..0bd714df55 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,127 +142,127 @@ msgstr "Ajustes" msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hoy" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ayer" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "meses antes" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "el año pasado" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "años antes" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Seleccionar" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Error cargando plantilla del seleccionador de archivos: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "No" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Aceptar" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Error cargando plantilla del mensaje: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} conflicto de archivo" msgstr[1] "{count} conflictos de archivo" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Un conflicto de archivo" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "¿Que archivos deseas mantener?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Si seleccionas ambas versiones, el archivo copiado tendrá añadido un número en su nombre." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(todos seleccionados)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Error cargando plantilla de archivo existente" @@ -294,12 +294,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Error al compartir" @@ -363,71 +363,71 @@ msgstr "Compartir por correo electrónico:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notificar al usuario por correo electrónico" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "puede editar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "control de acceso" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "crear" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "actualizar" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "eliminar" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "compartir" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Precaución" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index a069257903..aeb5e6cc2e 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Falló al escribir al disco" msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Directorio inválido." @@ -143,53 +143,53 @@ msgstr "Directorio inválido." msgid "Files" msgstr "Archivos" -#: js/file-upload.js:247 +#: js/file-upload.js:254 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:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:477 +#: js/file-upload.js:490 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, la subida será cancelada." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Error al descargar URL." @@ -213,35 +213,35 @@ msgstr "Error moviendo archivo" msgid "Error" msgstr "Error" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Error borrando el archivo." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index d55838ac0b..ba1c8ca747 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "No se puede eliminar %s permanentemente" msgid "Couldn't restore %s" msgstr "No se puede restaurar %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Archivos eliminados" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Error" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Archivos Eliminados" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "recuperado" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nombre" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Eliminado" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Eliminar" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Archivos Eliminados" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 1e159b062b..35e71a9ae3 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index d38b34e41c..ddbe0ce251 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 686bc7973e..4a36dbbeea 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,127 +144,127 @@ msgstr "Seaded" msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "täna" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "eile" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "aastat tagasi" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Vali" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Viga failivalija malli laadimisel: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Jah" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ei" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Viga sõnumi malli laadimisel: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} failikonflikt" msgstr[1] "{count} failikonflikti" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Üks failikonflikt" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Uued failid" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Milliseid faile sa soovid alles hoida?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Loobu" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Jätka" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(kõik valitud)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} valitud)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Viga faili olemasolu malli laadimisel" @@ -296,12 +296,12 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Viga" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -365,71 +365,71 @@ msgstr "Jaga e-postiga:" msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupp" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "teavita e-postiga" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "saab muuta" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "loo" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "uuenda" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "kustuta" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "jaga" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-kiri on saadetud" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Hoiatus" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index e687a37881..dd21c64115 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Sihtkataloog on ümber tõstetud või kustutatud." @@ -129,15 +129,15 @@ msgstr "Kettale kirjutamine ebaõnnestus" msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Vigane kaust." @@ -145,53 +145,53 @@ msgstr "Vigane kaust." msgid "Files" msgstr "Failid" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Faili suurus {size1} ületab faili üleslaadimise mahu piirangu {size2}." -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Pole piisavalt vaba ruumi. Sa laadid üles {size1}, kuid ainult {size2} on saadaval." -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Serverist ei saadud tulemusi" -#: js/file-upload.js:477 +#: js/file-upload.js:490 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:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL ei saa olla tühi" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Ei suuda luua faili" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Viga URL-i haaramisel" @@ -215,35 +215,35 @@ msgstr "Viga faili eemaldamisel" msgid "Error" msgstr "Viga" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Viga faili kustutamisel." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index daf82c7cff..cb8d06a22d 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "%s jäädavalt kustutamine ebaõnnestus" msgid "Couldn't restore %s" msgstr "%s ei saa taastada" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Kustutatud failid" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Viga" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Kustutatud failid" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "taastatud" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Siin pole midagi. Sinu prügikast on tühi!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nimi" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Taasta" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Kustutatud" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Kustuta" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Kustutatud failid" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 9da15a0358..3a21e4d2e5 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index fbb1bfb086..71a4cf2bf2 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index bbfc2bbca1..f13fab969c 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,127 +144,127 @@ msgstr "Ezarpenak" msgid "Saving..." msgstr "Gordetzen..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segundu" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "gaur" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "atzo" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "hilabete" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "joan den urtean" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "urte" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Aukeratu" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Errorea fitxategi hautatzaile txantiloiak kargatzerakoan: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Bai" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ez" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ados" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Errorea mezu txantiloia kargatzean: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "fitxategi {count}ek konfliktua sortu du" msgstr[1] "{count} fitxategik konfliktua sortu dute" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Fitxategi batek konfliktua sortu du" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Fitxategi Berriak" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Ze fitxategi mantendu nahi duzu?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Bi bertsioak hautatzen badituzu, kopiatutako fitxategiaren izenean zenbaki bat atxikituko zaio." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Jarraitu" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(denak hautatuta)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} hautatuta)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Errorea fitxategia existitzen da txantiloiak kargatzerakoan" @@ -296,12 +296,12 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Errorea" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -365,71 +365,71 @@ msgstr "Elkarbanatu eposta bidez:" msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "taldea" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "jakinarazi eposta bidez" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "sortu" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "eguneratu" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "ezabatu" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "elkarbanatu" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Eposta bidalia" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Abisua" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 7825ae3193..139d567f5f 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -129,15 +129,15 @@ msgstr "Errore bat izan da diskoan idazterakoan" msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -145,53 +145,53 @@ msgstr "Baliogabeko karpeta." msgid "Files" msgstr "Fitxategiak" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ezin da {filename} igo karpeta bat delako edo 0 byte dituelako" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Ezin da zerbitzaritik emaitzik lortu" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URLa ezin da hutsik egon" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Ezin izan da fitxategia sortu" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Errorea URLa eskuratzerakoan" @@ -215,35 +215,35 @@ msgstr "Errorea fitxategia mugitzean" msgid "Error" msgstr "Errorea" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Zain" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Ezin izan da fitxategia berrizendatu" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Errorea fitxategia ezabatzerakoan." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" msgstr[1] "%n fitxategi" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} eta {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Fitxategi %n igotzen" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index bef48ecf43..85c7136db7 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Ezin izan da %s betirako ezabatu" msgid "Couldn't restore %s" msgstr "Ezin izan da %s berreskuratu" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Errorea" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Ezabatutako Fitxategiak" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "Berrezarrita" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ez dago ezer ez. Zure zakarrontzia hutsik dago!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Izena" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Berrezarri" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Ezabatuta" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Ezabatu" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Ezabatutako Fitxategiak" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index f9c9078b71..a66de5fe05 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 980129d392..ac81ab1cd5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index c90f3f0654..1eb4ee7349 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,122 +143,122 @@ msgstr "تنظیمات" msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "ثانیهها پیش" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "امروز" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "دیروز" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "ماه قبل" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "ماههای قبل" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "سال قبل" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "سالهای قبل" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "انتخاب کردن" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "بله" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "نه" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "قبول" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "فایل های جدید" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "منصرف شدن" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -290,12 +290,12 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراکگذاری" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "خطا" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -359,71 +359,71 @@ msgstr "از طریق ایمیل به اشتراک بگذارید :" msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "گروه" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "ایجاد" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "به روز" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "پاک کردن" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "ایمیل ارسال شد" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "اخطار" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 4d0ab7beca..969a816852 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -129,15 +129,15 @@ msgstr "نوشتن بر روی دیسک سخت ناموفق بود" msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." @@ -145,53 +145,53 @@ msgstr "فهرست راهنما نامعتبر می باشد." msgid "Files" msgstr "پروندهها" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -215,33 +215,33 @@ msgstr "" msgid "Error" msgstr "خطا" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "در حال بارگذاری %n فایل" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 298294ab22..a5308fdb1b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "%s را نمی توان برای همیشه حذف کرد" msgid "Couldn't restore %s" msgstr "%s را نمی توان بازگرداند" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "فایل های حذف شده" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "خطا" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "فایلهای حذف شده" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است." -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "نام" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "بازیابی" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "حذف شده" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "حذف" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "فایلهای حذف شده" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 7ca8e8d50e..6a301250d5 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 4067fcff5a..7244996650 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index bca5b27b15..766a2aee42 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 08:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -145,127 +145,127 @@ msgstr "Asetukset" msgid "Saving..." msgstr "Tallennetaan..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "tänään" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "eilen" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "viime kuussa" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "viime vuonna" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "vuotta sitten" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Valitse" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Virhe ladatessa tiedostopohjia: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Kyllä" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ei" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Virhe ladatessa viestipohjaa: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} tiedoston ristiriita" msgstr[1] "{count} tiedoston ristiriita" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Yhden tiedoston ristiriita" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Uudet tiedostot" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Jo olemassa olevat tiedostot" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Mitkä tiedostot haluat säilyttää?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Jos valitset kummatkin versiot, kopioidun tiedoston nimeen lisätään numero." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Peru" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Jatka" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(kaikki valittu)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} valittu)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Virhe ladatessa mallipohjaa" @@ -297,12 +297,12 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Virhe" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -366,71 +366,71 @@ msgstr "Jaa sähköpostilla:" msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "ryhmä" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "{item} on jaettu {user} kanssa" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "ilmoita sähköpostitse" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "voi muokata" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "luo" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "päivitä" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "poista" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "jaa" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Sähköposti lähetetty" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Varoitus" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 94f8bbbdf8..aebd22bd7f 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Kohdekansio on siirretty tai poistettu." @@ -130,15 +130,15 @@ msgstr "Levylle kirjoitus epäonnistui" msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -146,53 +146,53 @@ msgstr "Virheellinen kansio." msgid "Files" msgstr "Tiedostot" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kohdetta {filename} ei voi lähettää, koska se on joko kansio tai sen koko on 0 tavua" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Yhteiskoko {size1} ylittää lähetysrajan {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Ei riittävästi vapaata tilaa. Lähetyksesi koko on {size1}, mutta vain {size2} on jäljellä" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Tuloksien saaminen palvelimelta ei onnistunut." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Tiedoston luominen epäonnistui" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Virhe noutaessa verkko-osoitetta" @@ -216,35 +216,35 @@ msgstr "Virhe tiedostoa siirrettäessä" msgid "Error" msgstr "Virhe" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Virhe tiedostoa poistaessa." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index d80adb6e8a..acc0233212 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Kohdetta %s ei voitu poistaa pysyvästi" msgid "Couldn't restore %s" msgstr "Kohteen %s palautus epäonnistui" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Virhe" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Poistetut tiedostot" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "palautettu" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tyhjää täynnä! Roskakorissa ei ole mitään." -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nimi" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Palauta" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Poistettu" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Poista" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Poistetut tiedostot" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 52eee42c96..c1d806b8df 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 15:20+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index a407df61fb..099986464f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index c36deca960..177563180d 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 11:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -266,11 +266,11 @@ msgstr "Poursuivre" msgid "(all selected)" msgstr "(tous sélectionnés)" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} sélectionnés)" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Erreur de chargement du modèle de fichier existant" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index fcf0cda1b0..f82038376f 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Le dossier cible a été déplacé ou supprimé." @@ -132,15 +132,15 @@ msgstr "Erreur d'écriture sur le disque" msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Dossier invalide." @@ -148,53 +148,53 @@ msgstr "Dossier invalide." msgid "Files" msgstr "Fichiers" -#: js/file-upload.js:247 +#: js/file-upload.js:254 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:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "La taille totale du fichier {size1} excède la taille maximale d'envoi {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Espace insuffisant : vous tentez d'envoyer {size1} mais seulement {size2} sont disponibles" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Envoi annulé." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Ne peut recevoir les résultats du serveur." -#: js/file-upload.js:477 +#: js/file-upload.js:490 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:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Impossible de créer le fichier" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Impossible de créer le dossier" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Erreur d'accès à l'URL" @@ -218,35 +218,35 @@ msgstr "Erreur lors du déplacement du fichier" msgid "Error" msgstr "Erreur" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "En attente" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Erreur pendant la suppression du fichier." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index a484716b9b..310713d5dd 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Impossible d'effacer %s de façon permanente" msgid "Couldn't restore %s" msgstr "Impossible de restaurer %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Fichiers supprimés" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Erreur" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Fichiers effacés" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "restauré" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Il n'y a rien ici. Votre corbeille est vide !" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nom" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Restaurer" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Effacé" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Supprimer" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Fichiers effacés" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index adcb630438..f2b3a03c20 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 03:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: RyDroid <rydroid_trans@yahoo.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 241e7c3421..063d69cc22 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 03:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: RyDroid <rydroid_trans@yahoo.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 5d2b05c829..c3754b7adb 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 11:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -144,127 +144,127 @@ msgstr "Axustes" msgid "Saving..." msgstr "Gardando..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hoxe" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "onte" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "último mes" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "meses atrás" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "último ano" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Escoller" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Produciuse un erro ao cargar o modelo do selector: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Si" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Non" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Aceptar" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Produciuse un erro ao cargar o modelo da mensaxe: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} conflito de ficheiro" msgstr[1] "{count} conflitos de ficheiros" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Un conflito de ficheiro" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Ficheiros novos" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Ficheiros xa existentes" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Que ficheiros quere conservar?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se selecciona ambas versións, o ficheiro copiado terá un número engadido ao nome." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(todo o seleccionado)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Produciuse un erro ao cargar o modelo de ficheiro existente" @@ -296,12 +296,12 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -365,71 +365,71 @@ msgstr "Compartir por correo:" msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notificar por correo" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "pode editar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "control de acceso" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "crear" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "actualizar" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "eliminar" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "compartir" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Correo enviado" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Aviso" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 24d81be893..6d21e74614 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "O cartafol de destino foi movido ou eliminado." @@ -129,15 +129,15 @@ msgstr "Produciuse un erro ao escribir no disco" msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -145,53 +145,53 @@ msgstr "O directorio é incorrecto." msgid "Files" msgstr "Ficheiros" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Non é posíbel enviar {filename}, xa que ou é un directorio ou ten 0 bytes" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "O tamaño total do ficheiro {size1} excede do límite de envío {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Non hai espazo libre abondo, o seu envío é de {size1} mais só dispón de {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Non foi posíbel obter o resultado do servidor." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Non foi posíbel crear o ficheiro" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Produciuse un erro ao obter o URL" @@ -215,35 +215,35 @@ msgstr "Produciuse un erro ao mover o ficheiro" msgid "Error" msgstr "Erro" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Produciuse un erro ao eliminar o ficheiro." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 50c9cbfb67..ce244ca039 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Non foi posíbel eliminar %s permanente" msgid "Couldn't restore %s" msgstr "Non foi posíbel restaurar %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Erro" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Ficheiros eliminados" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "restaurado" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Aquí non hai nada. O cesto do lixo está baleiro!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nome" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Restablecer" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Eliminado" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Eliminar" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Ficheiros eliminados" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index cccd98ddb2..2b8f1ed4fb 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 06:50+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 572a9987f5..746330d17a 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 06:50+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 0179be12db..0d82a12dc9 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,127 +144,127 @@ msgstr "הגדרות" msgid "Saving..." msgstr "שמירה…" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "שניות" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "היום" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "אתמול" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "חודשים" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "שנים" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "בחירה" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "כן" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "לא" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "בסדר" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "קבצים חדשים" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "ביטול" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -296,12 +296,12 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "שגיאה" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -365,71 +365,71 @@ msgstr "שיתוף באמצעות דוא״ל:" msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "קבוצה" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "יצירה" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "עדכון" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "מחיקה" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "שיתוף" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "אזהרה" diff --git a/l10n/he/files.po b/l10n/he/files.po index 082677ed42..ad260a38e1 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -129,15 +129,15 @@ msgstr "הכתיבה לכונן נכשלה" msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "תיקייה שגויה." @@ -145,53 +145,53 @@ msgstr "תיקייה שגויה." msgid "Files" msgstr "קבצים" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "לא ניתן לגשת לתוצאות מהשרת." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -215,35 +215,35 @@ msgstr "" msgid "Error" msgstr "שגיאה" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 24c4b7a045..7c8a27c14a 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "לא ניתן למחוק את %s לצמיתות" msgid "Couldn't restore %s" msgstr "לא ניתן לשחזר את %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "קבצים שנמחקו" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "שגיאה" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "קבצים שנמחקו" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "שוחזר" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "אין כאן שום דבר. סל המיחזור שלך ריק!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "שם" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "שחזור" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "נמחק" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "מחיקה" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "קבצים שנמחקו" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 81b69cc64d..3445981b76 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 5f680c4b2d..a077d25cad 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 465201029d..571197dfa4 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,127 +144,127 @@ msgstr "सेटिंग्स" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -296,12 +296,12 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "त्रुटि" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -365,71 +365,71 @@ msgstr "" msgid "No people found" msgstr "कोई व्यक्ति नहीं मिले " -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "चेतावनी " diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 72e81b6038..e67b344c20 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "त्रुटि" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 759f8e01d2..52aeadc9ba 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "त्रुटि" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 5bf71a571f..e529f84564 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 5cf8c00932..fefe1fb85a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index be6045fb23..739b25a88d 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,132 +142,132 @@ msgstr "Postavke" msgid "Saving..." msgstr "Spremanje..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "danas" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "jučer" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "mjeseci" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "godina" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Izaberi" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "U redu" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Odustani" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -299,12 +299,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -368,71 +368,71 @@ msgstr "Dijeli preko email-a:" msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "kreiraj" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "ažuriraj" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "izbriši" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "djeli" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 8af768de1f..0074b6dec5 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Neuspjelo pisanje na disk" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "Datoteke" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "Greška" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index c4f62d494f..dad78c7dfa 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Greška" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Ime" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Obriši" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 0fa0737b75..16655c2363 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index d2da212393..a737c807fc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index d9b058d941..b37aaff518 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -145,127 +145,127 @@ msgstr "Beállítások" msgid "Saving..." msgstr "Mentés..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n perccel ezelőtt" msgstr[1] "%n perccel ezelőtt" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "ma" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "tegnap" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "több hónapja" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "tavaly" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "több éve" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Válasszon" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Nem sikerült betölteni a fájlkiválasztó sablont: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Igen" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nem" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Nem sikerült betölteni az üzenet sablont: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} fájl ütközik" msgstr[1] "{count} fájl ütközik" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Egy file ütközik" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Új fájlok" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Melyik file-okat akarod megtartani?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Ha kiválasztod mindazokaz a verziókat, a másolt fileok neve sorszámozva lesz." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Mégsem" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Folytatás" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(all selected)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} kiválasztva)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Hiba a létező sablon betöltésekor" @@ -297,12 +297,12 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Hiba" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -366,71 +366,71 @@ msgstr "Megosztás emaillel:" msgid "No people found" msgstr "Nincs találat" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "csoport" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "email értesítés" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "módosíthat" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "jogosultság" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "létrehoz" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "szerkeszt" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "töröl" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "megoszt" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Az emailt elküldtük" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Figyelmeztetés" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 96f91fea06..1dc8cba47a 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -129,15 +129,15 @@ msgstr "Nem sikerült a lemezre történő írás" msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -145,53 +145,53 @@ msgstr "Érvénytelen mappa." msgid "Files" msgstr "Fájlok" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "A(z) {filename} állomány nem tölthető fel, mert ez vagy egy mappa, vagy pedig 0 bájtból áll." -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "A kiszolgálótól nem kapható meg az eredmény." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "Az URL-cím nem maradhat kitöltetlenül" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Az állomány nem hozható létre" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "A mappa nem hozható létre" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "A megadott URL-ről nem sikerül adatokat kapni" @@ -215,35 +215,35 @@ msgstr "Az állomány áthelyezése nem sikerült." msgid "Error" msgstr "Hiba" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Az állomány nem nevezhető át" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Hiba a file törlése közben." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" msgstr[1] "%n állomány" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} és {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n állomány feltöltése" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 06b4c26766..f8d7db50eb 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +28,38 @@ 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/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Törölt fájlok" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Hiba" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Törölt fájlok" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "visszaállítva" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Itt nincs semmi. Az Ön szemetes mappája üres!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Név" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Visszaállítás" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Törölve" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Törlés" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Törölt fájlok" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 0f77a8e7a0..ca7929dce2 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 09f453e54f..d7e1b277b2 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index b2feb59e74..a269263e65 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,127 +142,127 @@ msgstr "Configurationes" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancellar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +294,12 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -363,71 +363,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "gruppo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Leva compartir" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "pote modificar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index caded4be34..3110f2fd87 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "Files" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 6333e27184..729956da02 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Error" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nomine" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Deler" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 29fa98e3ad..9658732434 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index eba9f5be06..971df2a428 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 27d4c0d4a7..2ba78033e3 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,122 +142,122 @@ msgstr "Pengaturan" msgid "Saving..." msgstr "Menyimpan..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hari ini" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "kemarin" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "beberapa tahun lalu" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Pilih" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Galat memuat templat berkas pemilih: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ya" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Tidak" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Oke" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Galat memuat templat pesan: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} berkas konflik" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Satu berkas konflik" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Berkas mana yang ingin anda pertahankan?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Jika anda memilih kedua versi, berkas yang disalin akan memiliki nomor yang ditambahkan sesuai namanya." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Batal" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Lanjutkan" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(semua terpilih)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} terpilih)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Galat memuat templat berkas yang sudah ada" @@ -289,12 +289,12 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Galat" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -358,71 +358,71 @@ msgstr "Bagian lewat email:" msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grup" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "notifikasi via email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "dapat sunting" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "kontrol akses" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "buat" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "perbarui" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "hapus" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "bagikan" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Sandi dilindungi" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Galat ketika mengatur tanggal kedaluwarsa" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email terkirim" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Peringatan" diff --git a/l10n/id/files.po b/l10n/id/files.po index 8b63cc4291..7b7f991bc7 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -128,15 +128,15 @@ msgstr "Gagal menulis ke disk" msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Direktori tidak valid." @@ -144,53 +144,53 @@ msgstr "Direktori tidak valid." msgid "Files" msgstr "Berkas" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Tidak mendapatkan hasil dari server." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL tidak boleh kosong" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Tidak dapat membuat berkas" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Tidak dapat membuat folder" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -214,33 +214,33 @@ msgstr "Galat saat memindahkan berkas" msgid "Error" msgstr "Galat" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Tidak dapat mengubah nama berkas" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Galat saat menghapus berkas." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n berkas" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} dan {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Mengunggah %n berkas" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index bcd56f05f6..a91067fa67 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "Tidak dapat menghapus permanen %s" msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Galat" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Berkas yang Dihapus" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tempat sampah anda kosong!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nama" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Pulihkan" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Dihapus" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Hapus" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Berkas yang Dihapus" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index e5b36822df..1c9446d3d2 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 9ddcdfa9c6..963d006165 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 92864f101c..e1f48b77a8 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,127 +143,127 @@ msgstr "Stillingar" msgid "Saving..." msgstr "Er að vista ..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sek." -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "í dag" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "í gær" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "síðasta ári" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "einhverjum árum" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Veldu" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Já" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nei" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Í lagi" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Hætta við" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +295,12 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Villa" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -364,71 +364,71 @@ msgstr "Deila með tölvupósti:" msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "getur breytt" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "mynda" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "uppfæra" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "eyða" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "deila" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Tölvupóstur sendur" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Aðvörun" diff --git a/l10n/is/files.po b/l10n/is/files.po index bd2bbad19c..9453eebd35 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Tókst ekki að skrifa á disk" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Ógild mappa." @@ -143,53 +143,53 @@ msgstr "Ógild mappa." msgid "Files" msgstr "Skrár" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "Villa" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 72fed74a6d..efb4a28d4c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Villa" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nafn" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Eyða" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 835206d3ff..3e64391c26 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index b33abc1b2b..69fba0b908 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index fa750f6618..02025132f4 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 22:35+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -262,11 +262,11 @@ msgstr "Continua" msgid "(all selected)" msgstr "(tutti i selezionati)" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} selezionati)" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Errore durante il caricamento del modello del file esistente" diff --git a/l10n/it/files.po b/l10n/it/files.po index dca986f6c5..82da73f8eb 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La cartella di destinazione è stata spostata o eliminata." @@ -129,15 +129,15 @@ msgstr "Scrittura su disco non riuscita" msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Cartella non valida." @@ -145,53 +145,53 @@ msgstr "Cartella non valida." msgid "Files" msgstr "File" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Impossibile caricare {filename} poiché è una cartella oppure ha una dimensione di 0 byte." -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "La dimensione totale del file {size1} supera il limite di caricamento {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Spazio insufficiente, stai caricando {size1}, ma è rimasto solo {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Impossibile ottenere il risultato dal server." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Impossibile creare il file" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Impossibile creare la cartella" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Errore durante il recupero dello URL" @@ -215,35 +215,35 @@ msgstr "Errore durante lo spostamento del file" msgid "Error" msgstr "Errore" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "In corso" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Errore durante l'eliminazione del file." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 2823cc284f..e299050c81 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 07:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -28,38 +28,38 @@ msgstr "Impossibile eliminare %s definitivamente" msgid "Couldn't restore %s" msgstr "Impossibile ripristinare %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "File eliminati" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Errore" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "File eliminati" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "ripristinati" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Qui non c'è niente. Il tuo cestino è vuoto." -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nome" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Ripristina" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Eliminati" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Elimina" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "File eliminati" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 0a00b4fb4f..2df8f3a821 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 06:20+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index f35b94fd38..7cbe7e5ee7 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 06:20+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index 66014893c6..cf2f3a1df3 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -148,122 +148,122 @@ msgstr "設定" msgid "Saving..." msgstr "保存中..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "今日" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "昨日" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n日前" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "1ヶ月前" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%nヶ月前" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "数ヶ月前" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "1年前" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "数年前" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "選択" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "ファイル選択テンプレートの読み込みエラー: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "はい" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "いいえ" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "メッセージテンプレートの読み込みエラー: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} ファイルが競合" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "1ファイルが競合" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "新しいファイル" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "どちらのファイルを保持したいですか?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "両方のバージョンを選択した場合は、ファイル名の後ろに数字を追加したファイルのコピーを作成します。" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "キャンセル" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "続ける" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(全て選択)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} 選択)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "既存ファイルのテンプレートの読み込みエラー" @@ -295,12 +295,12 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "エラー" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -364,71 +364,71 @@ msgstr "メール経由で共有:" msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "グループ" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "共有解除" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "メールで通知" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "編集を許可" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "アクセス権限" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "作成" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "アップデート" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "削除" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "共有" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "メールを送信しました" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "警告" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 0ac2ef5d91..2b916be565 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -49,7 +49,7 @@ msgid "" "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "目標のフォルダは移動されたか、削除されました。" @@ -134,15 +134,15 @@ msgstr "ディスクへの書き込みに失敗しました" msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -150,53 +150,53 @@ msgstr "無効なディレクトリです。" msgid "Files" msgstr "ファイル" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのため {filename} をアップロードできません" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "合計ファイルサイズ {size1} はアップロード制限 {size2} を超過しています。" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "空き容量が十分でなく、 {size1} をアップロードしていますが、 {size2} しか残っていません。" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "サーバーから結果を取得できませんでした。" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL は空にできません" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在します" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "ファイルを作成できませんでした" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "フォルダーを作成できませんでした" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "URL取得エラー" @@ -220,33 +220,33 @@ msgstr "ファイルの移動エラー" msgid "Error" msgstr "エラー" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "中断" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "ファイルの名前変更ができませんでした" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "ファイルの削除エラー。" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個のフォルダー" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個のファイル" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} と {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個のファイルをアップロード中" diff --git a/l10n/ja/files_trashbin.po b/l10n/ja/files_trashbin.po index 54d718dcc9..ec59ca1ef8 100644 --- a/l10n/ja/files_trashbin.po +++ b/l10n/ja/files_trashbin.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -31,38 +31,38 @@ msgstr "%s を完全に削除できませんでした" msgid "Couldn't restore %s" msgstr "%s を復元できませんでした" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "ゴミ箱" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "エラー" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "ゴミ箱" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "復元済" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "ここには何もありません。ゴミ箱は空です!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "名前" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "復元" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "削除済み" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "削除" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "ゴミ箱" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index ae2dcf59d1..cf815cf287 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index f5a0f629f9..c590548a9f 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 734a0cd8b5..c8b1e65a00 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,122 +142,122 @@ msgstr "პარამეტრები" msgid "Saving..." msgstr "შენახვა..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "დღეს" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "წლის წინ" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "არჩევა" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "კი" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "არა" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "დიახ" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "ახალი ფაილები" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "უარყოფა" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +289,12 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "შეცდომა" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -358,71 +358,71 @@ msgstr "გააზიარე მეილზე" msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "ჯგუფი" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "შექმნა" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "განახლება" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "წაშლა" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "გაზიარება" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "იმეილი გაიგზავნა" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "გაფრთხილება" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 71cff17cda..9a05853f50 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "შეცდომა დისკზე ჩაწერისას" msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." @@ -143,53 +143,53 @@ msgstr "დაუშვებელი დირექტორია." msgid "Files" msgstr "ფაილები" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "შეცდომა" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 1ffeff0c2b..c4f96c3539 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "ფაილი %s–ის სრულად წაშლა ვერ msgid "Couldn't restore %s" msgstr "%s–ის აღდგენა ვერ მოხერხდა" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "წაშლილი ფაილები" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "შეცდომა" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "წაშლილი ფაილები" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "სახელი" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "აღდგენა" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "წაშლილი" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "წაშლა" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "წაშლილი ფაილები" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 6f126c6125..f4d3be0588 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 35cef142b5..72f7076dd2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/core.po b/l10n/km/core.po index 75a4a0c4af..15f1347c38 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# សុវិចិត្រ Sovichet ទេព Tep <sovichet.tep@gmail.com>, 2014 +# សុវិចិត្រ Sovichet ទេព Tep, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,122 +143,122 @@ msgstr "ការកំណត់" msgid "Saving..." msgstr "កំពុងរក្សាទុក" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "វិនាទីមុន" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n នាទីមុន" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ម៉ោងមុន" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "ថ្ងៃនេះ" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ម្សិលមិញ" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ថ្ងៃមុន" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "ខែមុន" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ខែមុន" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "ខែមុន" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "ឆ្នាំមុន" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "ឆ្នាំមុន" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "ជ្រើស" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ព្រម" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "ទេ" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "ព្រម" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "លើកលែង" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -290,12 +290,12 @@ msgstr "បានចែករំលែក" msgid "Share" msgstr "ចែករំលែក" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "កំហុស" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "កំហុសពេលចែករំលែក" @@ -359,71 +359,71 @@ msgstr "ចែករំលែកតាមអ៊ីមែល៖" msgid "No people found" msgstr "រកមិនឃើញមនុស្សណាម្នាក់" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "ក្រុម" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "មិនអនុញ្ញាតឲ្យមានការចែករំលែកឡើងវិញ" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "បានចែករំលែកក្នុង {item} ជាមួយ {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "លែងចែករំលែក" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "អាចកែប្រែ" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "សិទ្ធិបញ្ជា" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "បង្កើត" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "ធ្វើបច្ចុប្បន្នភាព" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "លុប" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "ចែករំលែក" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "បានការពារដោយពាក្យសម្ងាត់" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "កំពុងផ្ញើ ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "បានផ្ញើអ៊ីមែល" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "បម្រាម" diff --git a/l10n/km/files.po b/l10n/km/files.po index ac62c9a40c..3a2dbcd7c2 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "ឯកសារ" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "កំហុស" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index 724b7c893a..a1b7649d1a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "កំហុស" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "ឈ្មោះ" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "ស្ដារមកវិញ" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "លុប" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index ac4641686b..e4144427d5 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 09:30+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index 22fd03e089..a5975172fc 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# សុវិចិត្រ Sovichet ទេព Tep <sovichet.tep@gmail.com>, 2014 +# សុវិចិត្រ Sovichet ទេព Tep, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 6932d89f8b..3cccdaed7a 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -149,122 +149,122 @@ msgstr "설정" msgid "Saving..." msgstr "저장 중..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "초 전" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "오늘" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "어제" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "지난 달" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "개월 전" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "작년" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "년 전" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "선택" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "파일 선택 템플릿을 불러오는 중 오류 발생: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "예" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "아니요" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "확인" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "메시지 템플릿을 불러오는 중 오류 발생: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "파일 {count}개 충돌" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "파일 1개 충돌" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "어느 파일을 유지하시겠습니까?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "두 버전을 모두 선택하면, 파일 이름에 번호가 추가될 것입니다." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "취소" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "계속" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(모두 선택됨)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count}개 선택됨)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "파일 존재함 템플릿을 불러오는 중 오류 발생" @@ -296,12 +296,12 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "오류" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -365,71 +365,71 @@ msgstr "이메일로 공유:" msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "그룹" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "이메일로 알림" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "편집 가능" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "접근 제어" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "생성" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "업데이트" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "삭제" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "공유" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "이메일 발송됨" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "경고" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 5374b3edc4..a186b4fa9b 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -133,15 +133,15 @@ msgstr "디스크에 쓰지 못했습니다" msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -149,53 +149,53 @@ msgstr "올바르지 않은 디렉터리입니다." msgid "Files" msgstr "파일" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "{filename}을(를) 업로드할 수 없습니다. 폴더이거나 0 바이트 파일입니다." -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "서버에서 결과를 가져올 수 없습니다." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL이 비어있을 수 없음" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "파일을 만들 수 없음" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "폴더를 만들 수 없음" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "URL을 가져올 수 없음" @@ -219,33 +219,33 @@ msgstr "파일 이동 오류" msgid "Error" msgstr "오류" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "이름을 변경할 수 없음" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "파일 삭제 오류." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "폴더 %n개" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "파일 %n개" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} 그리고 {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "파일 %n개 업로드 중" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 2e42d08c62..dfa513dead 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -30,38 +30,38 @@ msgstr "%s을(를_ 영구적으로 삭제할 수 없습니다" msgid "Couldn't restore %s" msgstr "%s을(를) 복원할 수 없습니다" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "삭제된 파일" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "오류" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "삭제된 파일" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "복원됨" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "휴지통이 비어 있습니다!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "이름" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "복원" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "삭제됨" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "삭제" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "삭제된 파일" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index e056694af0..8ebaba25f0 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 0c91c72192..e6f093381f 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 3f62db2a42..54a062281a 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,127 +142,127 @@ msgstr "دهستكاری" msgid "Saving..." msgstr "پاشکهوتدهکات..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "بەڵێ" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "نەخێر" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "لابردن" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +294,12 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "ههڵه" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -363,71 +363,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "ئاگاداری" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 5f3a144768..854076585a 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "پهڕگەکان" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "ههڵه" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 3033241801..951ebab0b4 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "ههڵه" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "ناو" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 5947cd8a09..fa631b8021 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index a7fb0b19ba..661ef51e48 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index e07f5422ac..aae46a0cf8 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,127 +144,127 @@ msgstr "Astellungen" msgid "Saving..." msgstr "Speicheren..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n Minutt hir" msgstr[1] "%n Minutten hir" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "haut" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "gëschter" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "leschte Mount" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "Méint hir" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "Joren hir" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Auswielen" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Jo" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nee" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Weieng Fichieren wëlls de gär behalen?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Ofbriechen" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Weider" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(all ausgewielt)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} ausgewielt)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -296,12 +296,12 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Feeler" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -365,71 +365,71 @@ msgstr "Via E-Mail deelen:" msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "Grupp" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "via e-mail Bescheed ginn" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kann änneren" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "erstellen" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "aktualiséieren" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "läschen" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "deelen" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email geschéckt" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Warnung" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 98509d0c5c..c2a3c2079a 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Konnt net op den Disk schreiwen" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "Dateien" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "Fehler" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 647f1b6f63..2987c2e4d6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Numm" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Läschen" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 8555b5accc..6d37f4bd60 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 0489c90be3..626213c72a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index bde5eb1e70..3b56f1e5fa 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -147,132 +147,132 @@ msgstr "Nustatymai" msgid "Saving..." msgstr "Saugoma..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "šiandien" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "vakar" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "praeitais metais" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "prieš metus" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Pasirinkite" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Klaida įkeliant failo parinkimo ruošinį: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Taip" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Gerai" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Klaida įkeliant žinutės ruošinį: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} failas konfliktuoja" msgstr[1] "{count} failai konfliktuoja" msgstr[2] "{count} failų konfliktų" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Vienas failo konfliktas" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Kuriuos failus norite laikyti?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Jei pasirenkate abi versijas, nukopijuotas failas turės pridėtą numerį pavadinime." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Atšaukti" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Tęsti" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(visi pažymėti)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} pažymėtų)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Klaida įkeliant esančių failų ruošinį" @@ -304,12 +304,12 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Klaida" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -373,71 +373,71 @@ msgstr "Dalintis per el. paštą:" msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupė" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "pranešti el. paštu" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "sukurti" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "atnaujinti" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "ištrinti" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "dalintis" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Laiškas išsiųstas" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Įspėjimas" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 8d013e7a1a..e6d1e3c000 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -130,15 +130,15 @@ msgstr "Nepavyko įrašyti į diską" msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Neteisingas aplankas" @@ -146,53 +146,53 @@ msgstr "Neteisingas aplankas" msgid "Files" msgstr "Failai" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nepavyksta įkelti {filename}, nes tai katalogas arba yra 0 baitų dydžio" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Nepavyko gauti rezultato iš serverio." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Neįmanoma sukurti failo" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Klauda gaunant URL" @@ -216,37 +216,37 @@ msgstr "Klaida perkeliant failą" msgid "Error" msgstr "Klaida" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Neįmanoma pervadinti failo" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Klaida trinant failą." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" msgstr[1] "%n failai" msgstr[2] "%n failų" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} ir {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Įkeliamas %n failas" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 078fbb550d..f8985e010c 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "Nepavyko negrįžtamai ištrinti %s" msgid "Couldn't restore %s" msgstr "Nepavyko atkurti %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Ištrinti failai" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Klaida" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Ištrinti failai" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "atstatyta" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nieko nėra. Jūsų šiukšliadėžė tuščia!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Pavadinimas" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Atstatyti" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Ištrinti" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Ištrinti" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Ištrinti failai" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index a3da64d25e..9d6419643c 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 9ea5c5787b..30bc2cdbcf 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 89c1ba7879..2d6b65f4cc 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,132 +143,132 @@ msgstr "Iestatījumi" msgid "Saving..." msgstr "Saglabā..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "šodien" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "vakar" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "gadus atpakaļ" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Izvēlieties" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Jā" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nē" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Labi" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Jaunās datnes" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Atcelt" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -300,12 +300,12 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Kļūda" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -369,71 +369,71 @@ msgstr "Dalīties, izmantojot e-pastu:" msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupa" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "izveidot" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "atjaunināt" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "dzēst" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "dalīties" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Vēstule nosūtīta" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Brīdinājums" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 8c47b755a3..65a97c0e0f 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -128,15 +128,15 @@ msgstr "Neizdevās saglabāt diskā" msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Nederīga direktorija." @@ -144,53 +144,53 @@ msgstr "Nederīga direktorija." msgid "Files" msgstr "Datnes" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -214,37 +214,37 @@ msgstr "" msgid "Error" msgstr "Kļūda" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" msgstr[1] "%n fails" msgstr[2] "%n faili" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 9ff1e8319b..42da8f5858 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Nevarēja pilnībā izdzēst %s" msgid "Couldn't restore %s" msgstr "Nevarēja atjaunot %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Dzēstās datnes" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Kļūda" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Dzēstās datnes" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "atjaunots" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Šeit nekā nav. Jūsu miskaste ir tukša!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nosaukums" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Atjaunot" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Dzēsts" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Dzēst" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Dzēstās datnes" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 2c0d304b01..7f9f66604d 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 1b2ef1684b..612df2687b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index b513e1ed08..2152495b4d 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,127 +143,127 @@ msgstr "Подесувања" msgid "Saving..." msgstr "Снимам..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "денеска" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "вчера" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "минатиот месец" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "пред месеци" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "минатата година" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "пред години" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Избери" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Не" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Во ред" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Конфликт со една датотека" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Продолжи" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(сите одбрани)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} одбраните)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Грешка при вчитување на датотеката, шаблонот постои " @@ -295,12 +295,12 @@ msgstr "Споделен" msgid "Share" msgstr "Сподели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -364,71 +364,71 @@ msgstr "Сподели по е-пошта:" msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "група" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "извести преку електронска пошта" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "може да се измени" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "креирај" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "ажурирај" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "избриши" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "сподели" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Е-порака пратена" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Предупредување" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 72dd6a1caf..1a227389c3 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -128,15 +128,15 @@ msgstr "Неуспеав да запишам на диск" msgid "Not enough storage available" msgstr "Нема доволно слободен сториџ" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Погрешна папка." @@ -144,53 +144,53 @@ msgstr "Погрешна папка." msgid "Files" msgstr "Датотеки" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Не можам да добијам резултат од серверот." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL-то не може да биде празно" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Не множам да креирам датотека" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Не можам да креирам папка" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -214,35 +214,35 @@ msgstr "Грешка при префрлање на датотека" msgid "Error" msgstr "Грешка" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Чека" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Не можам да ја преименувам датотеката" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index a4f653bfa9..eceeee5f0e 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Не можеше трајно да се избрише %s" msgid "Couldn't restore %s" msgstr "Не можеше да се поврати %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Избришани датотеки" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Избришани датотеки" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "повратени" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Тука нема ништо. Вашата корпа за отпадоци е празна!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Име" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Поврати" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Избришан" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Избриши" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Избришани датотеки" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 4808e45f47..1082dea664 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 1fdce7b75a..5c6b12911b 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 2bd3a56010..276b33c5f5 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,122 +142,122 @@ msgstr "Tetapan" msgid "Saving..." msgstr "Simpan..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ya" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Tidak" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Batal" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +289,12 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Ralat" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -358,71 +358,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Amaran" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 8338e168bb..fca9d7124c 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Gagal untuk disimpan" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "Fail-fail" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "Ralat" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 93f473d699..9c95c7b8f1 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Tidak dapat menghapuskan %s secara kekal" msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Ralat" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Fail Dihapus" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "dipulihkan" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tiada apa disini. Tong sampah anda kosong!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nama" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Pulihkan" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Dihapuskan" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Padam" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Fail Dihapus" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 7c28e4cd32..a13c96d9be 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index d1462e5a4b..aab3d0e877 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 5a72ebdb02..6709e9a7d6 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -146,127 +146,127 @@ msgstr "Innstillinger" msgid "Saving..." msgstr "Lagrer..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt siden" msgstr[1] "%n minutter siden" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "i dag" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "i går" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "forrige måned" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "måneder siden" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "i fjor" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Velg" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Feil ved lasting av filvelger-mal: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nei" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Feil ved lasting av meldingsmal: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} filkonflikt" msgstr[1] "{count} filkonflikter" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "En filkonflikt" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Hvilke filer vil du beholde?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Hvis du velger begge versjonene vil den kopierte filen få et nummer lagt til i navnet." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Fortsett" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(alle valgt)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} valgt)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Feil ved lasting av \"filen eksisterer\"-mal" @@ -298,12 +298,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Feil under deling" @@ -367,71 +367,71 @@ msgstr "Del på epost" msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "gruppe" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Videredeling er ikke tillatt" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "Varsle på email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kan endre" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "opprett" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "oppdater" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "slett" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "del" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Feil ved nullstilling av utløpsdato" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Advarsel" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index abaede9501..41161d166d 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -131,15 +131,15 @@ msgstr "Klarte ikke å skrive til disk" msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Opplasting feilet. Fant ikke opplastet fil." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Opplasting feilet. Klarte ikke å finne informasjon om fil." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Ugyldig katalog." @@ -147,53 +147,53 @@ msgstr "Ugyldig katalog." msgid "Files" msgstr "Filer" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp {filename} fordi det er en mappe eller har 0 bytes" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Fikk ikke resultat fra serveren." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hjemmemappen er 'Shared' et reservert filnavn" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Klarte ikke å opprette fil" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Klarte ikke å opprette mappe" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Feil ved henting av URL" @@ -217,35 +217,35 @@ msgstr "Feil ved flytting av fil" msgid "Error" msgstr "Feil" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Klarte ikke å gi nytt navn til fil" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Feil ved sletting av fil." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laster opp %n fil" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 630f9d9f66..8647b1afb9 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "Kunne ikke slette %s fullstendig" msgid "Couldn't restore %s" msgstr "Kunne ikke gjenopprette %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Slettede filer" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Feil" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Slettede filer" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "gjenopprettet" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Søppelkassen din er tom!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Navn" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Slettet" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Slett" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Slettede filer" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 6943f76fe2..1847b9020b 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index c2097b948f..229c35dc6a 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 0432350323..e3fa48b58c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 08:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -145,127 +145,127 @@ msgstr "Instellingen" msgid "Saving..." msgstr "Opslaan" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "vandaag" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "gisteren" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "vorige maand" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "vorig jaar" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "jaar geleden" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Kies" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Fout bij laden bestandenselecteur sjabloon: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nee" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Fout bij laden berichtensjabloon: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} bestandsconflict" msgstr[1] "{count} bestandsconflicten" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Een bestandsconflict" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nieuwe bestanden" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Al aanwezige bestanden" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Welke bestanden wilt u bewaren?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Als u beide versies selecteerde, zal het gekopieerde bestand een nummer aan de naam toegevoegd krijgen." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Annuleer" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Verder" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(alles geselecteerd)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} geselecteerd)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Fout bij laden bestand bestaat al sjabloon" @@ -297,12 +297,12 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -366,71 +366,71 @@ msgstr "Deel via e-mail:" msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "groep" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "melden per e-mail" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "creëer" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "bijwerken" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "verwijderen" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "deel" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Waarschuwing" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 1ce4270a6a..07f271d5b9 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "De doelmap is verplaatst of verwijderd." @@ -129,15 +129,15 @@ msgstr "Schrijven naar schijf mislukt" msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -145,53 +145,53 @@ msgstr "Ongeldige directory." msgid "Files" msgstr "Bestanden" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kan {filename} niet uploaden omdat het een map is of 0 bytes groot is" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Totale bestandsgrootte {size1} groter dan uploadlimiet {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Niet genoeg vrije ruimte. U upload {size1}, maar is is slechts {size2} beschikbaar" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Kon het resultaat van de server niet terugkrijgen." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Kon bestand niet creëren" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Kon niet creëren map" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Fout bij ophalen URL" @@ -215,35 +215,35 @@ msgstr "Fout bij verplaatsen bestand" msgid "Error" msgstr "Fout" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Fout bij verwijderen bestand." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 58ac6f7097..17d352ef3b 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Kon %s niet permanent verwijderen" msgid "Couldn't restore %s" msgstr "Kon %s niet herstellen" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Fout" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Verwijderde bestanden" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "hersteld" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Niets te vinden. Uw prullenbak is leeg!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Naam" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Herstellen" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Verwijderd" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Verwijder" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Verwijderde bestanden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index a40738991f..ee2474973c 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 12:00+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index caaa23c3ae..261fbf9145 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 11:50+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 6b639db57e..f5053b3197 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -145,127 +145,127 @@ msgstr "Innstillingar" msgid "Saving..." msgstr "Lagrar …" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "i dag" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "i går" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "førre månad" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "i fjor" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "år sidan" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Vel" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Klarte ikkje å lasta filplukkarmal: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nei" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Greitt" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Klarte ikkje å lasta meldingsmal: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} filkonflikt" msgstr[1] "{count} filkonfliktar" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Éin filkonflikt" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Kva filer vil du spara?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Viss du vel begge utgåvene, vil den kopierte fila få eit tal lagt til namnet." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Gå vidare" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(alle valte)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} valte)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Klarte ikkje å lasta fil-finst-mal" @@ -297,12 +297,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Feil ved deling" @@ -366,71 +366,71 @@ msgstr "Del over e-post:" msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "gruppe" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Udel" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kan endra" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "lag" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "oppdater" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "slett" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "del" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Åtvaring" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 9abd909682..279c018f4b 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -130,15 +130,15 @@ msgstr "Klarte ikkje skriva til disk" msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -146,53 +146,53 @@ msgstr "Ugyldig mappe." msgid "Files" msgstr "Filer" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Klarte ikkje å lasta opp {filename} sidan det er ei mappe eller er 0 byte." -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Opplasting avbroten." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Klarte ikkje å henta resultat frå tenaren." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -216,35 +216,35 @@ msgstr "Feil ved flytting av fil" msgid "Error" msgstr "Feil" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lastar opp %n fil" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index d692d305c4..ab286c9bb3 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "Klarte ikkje sletta %s for godt" msgid "Couldn't restore %s" msgstr "Klarte ikkje gjenoppretta %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Sletta filer" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Feil" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Sletta filer" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "gjenoppretta" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Papirkorga di er tom!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Namn" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Sletta" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Slett" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Sletta filer" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index ca46e7a70f..71b46c3fe4 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 0061f938c0..658356c58e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 27973e1d23..e083a731ff 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,127 +142,127 @@ msgstr "Configuracion" msgid "Saving..." msgstr "Enregistra..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "uèi" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ièr" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "mes passat" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "meses a" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "an passat" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "ans a" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Causís" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Òc" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Non" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "D'accòrdi" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Annula" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +294,12 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Error al partejar" @@ -363,71 +363,71 @@ msgstr "Parteja tras corrièl :" msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grop" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "crea" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "met a jorn" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "escafa" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "parteja" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index b957e1ad48..2162cf8169 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "L'escriptura sul disc a fracassat" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "Fichièrs" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index fd7ff1be9e..61e5f8bd16 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Error" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nom" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Escafa" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 2b6ea53346..f7f91820ef 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 3a32a00911..321c69d22e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 622bfea68c..16e79ae93f 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,127 +143,127 @@ msgstr "ਸੈਟਿੰਗ" msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "ਚੁਣੋ" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ਹਾਂ" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "ਨਹੀਂ" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "ਠੀਕ ਹੈ" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +295,12 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "ਗਲ" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -364,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index f991fea862..d8cef14e9a 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "ਫਾਇਲਾਂ" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "ਗਲਤੀ" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index 386cfeb464..4ab7cac41e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "ਗਲਤੀ" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "ਹਟਾਓ" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index aecc54150c..4941f0d91b 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index 5cabb027e0..1005e8e45c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index b59c87df67..f2bcd30e7e 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:02+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: bobie <maciej.przybecki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -146,132 +146,132 @@ msgstr "Ustawienia" msgid "Saving..." msgstr "Zapisywanie..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "dziś" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "lat temu" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Wybierz" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Błąd podczas ładowania pliku wybranego szablonu: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Tak" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nie" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Błąd podczas ładowania szablonu wiadomości: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} konfliktów plików" msgstr[1] "{count} konfliktów plików" msgstr[2] "{count} konfliktów plików" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Konflikt pliku" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nowe pliki" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Już istniejące pliki" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Które pliki chcesz zachować?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Jeśli wybierzesz obie wersje, skopiowany plik będzie miał dodany numerek w nazwie" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Anuluj" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Kontynuuj " -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(wszystkie zaznaczone)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} zaznaczonych)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Błąd podczas ładowania szablonu istniejącego pliku" @@ -303,12 +303,12 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Błąd" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -372,71 +372,71 @@ msgstr "Współdziel poprzez e-mail:" msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupa" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "powiadom przez emaila" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "może edytować" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "utwórz" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "uaktualnij" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "usuń" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "współdziel" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-mail wysłany" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Ostrzeżenie" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 068fbdf5b6..af048c7ba9 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Folder docelowy został przeniesiony lub usunięty" @@ -133,15 +133,15 @@ msgstr "Błąd zapisu na dysk" msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -149,53 +149,53 @@ msgstr "Zła ścieżka." msgid "Files" msgstr "Pliki" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nie można przesłać {filename} być może jest katalogiem lub posiada 0 bajtów" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Całkowity rozmiar {size1} przekracza limit uploadu {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Brak wolnej przestrzeni, przesyłasz {size1} a pozostało tylko {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Nie można uzyskać wyniku z serwera." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL nie może być pusty" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Nie można utworzyć pliku" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Nie można utworzyć folderu" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Błąd przy pobieraniu adresu URL" @@ -219,37 +219,37 @@ msgstr "Błąd prz przenoszeniu pliku" msgid "Error" msgstr "Błąd" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Błąd podczas usuwania pliku" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 635883f2e4..894e1002d1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +28,38 @@ msgstr "Nie można trwale usunąć %s" msgid "Couldn't restore %s" msgstr "Nie można przywrócić %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Pliki usunięte" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Błąd" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Usunięte pliki" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "przywrócony" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nic tu nie ma. Twój kosz jest pusty!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nazwa" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Przywróć" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Usunięte" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Usuń" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Usunięte pliki" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index e82c049724..69bf7db7ac 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 15:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: bobie <maciej.przybecki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index b758ae5b78..e25e05427f 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 15:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: bobie <maciej.przybecki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6e559dd45a..6a333fe063 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 03:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -260,11 +260,11 @@ msgstr "Continuar" msgid "(all selected)" msgstr "(todos os selecionados)" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} selecionados)" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Erro ao carregar arquivo existe modelo" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 7134687fae..fbd360e35a 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "A pasta de destino foi movida ou excluída." @@ -130,15 +130,15 @@ msgstr "Falha ao escrever no disco" msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Falha no envio. Não foi possível obter informações do arquivo." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Diretório inválido." @@ -146,53 +146,53 @@ msgstr "Diretório inválido." msgid "Files" msgstr "Arquivos" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Incapaz de fazer o envio de {filename}, pois é um diretório ou tem 0 bytes" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Tamanho total do arquivo {size1} excede limite de envio {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Não há espaço suficiente, você está enviando {size1} mas resta apenas {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL não pode estar vazia" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Não foi possível criar o arquivo" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Não foi possível criar a pasta" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Erro ao buscar URL" @@ -216,35 +216,35 @@ msgstr "Erro movendo o arquivo" msgid "Error" msgstr "Erro" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Erro eliminando o arquivo." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 12327626f9..b4a8bb1acc 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Não foi possível excluir %s permanentemente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Arquivos apagados" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Erro" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Arquivos Apagados" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "restaurado" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nada aqui. Sua lixeira está vazia!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nome" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Excluído" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Excluir" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Arquivos Apagados" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 3bf361c543..7cb0d10fe6 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 16:30+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index b86ca612be..13dfb254b4 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 16:30+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 1d50e0c83c..5f9b5962c6 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -149,127 +149,127 @@ msgstr "Configurações" msgid "Saving..." msgstr "A guardar..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hoje" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ontem" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "ultímo mês" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "meses atrás" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "ano passado" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Escolha" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Erro ao carregar o modelo de selecionador de ficheiro: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Não" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Erro ao carregar o template: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} conflicto de ficheiro" msgstr[1] "{count} conflitos de ficheiro" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Um conflito no ficheiro" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Ficheiros Novos" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Quais os ficheiros que pretende manter?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Se escolher ambas as versões, o ficheiro copiado irá ter um número adicionado ao seu nome." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continuar" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(todos seleccionados)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} seleccionados)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Erro ao carregar o modelo de existências do ficheiro" @@ -301,12 +301,12 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -370,71 +370,71 @@ msgstr "Partilhar via email:" msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupo" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "Notificar por email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "pode editar" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "criar" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "actualizar" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "apagar" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "partilhar" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Aviso" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index c6587d1998..76c39e0d41 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -131,15 +131,15 @@ msgstr "Falhou a escrita no disco" msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Falhou o envio. Não conseguiu encontrar o ficheiro enviado" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Directório Inválido" @@ -147,53 +147,53 @@ msgstr "Directório Inválido" msgid "Files" msgstr "Ficheiros" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Incapaz de enviar {filename}, dado que é uma pasta, ou tem 0 bytes" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:477 +#: js/file-upload.js:490 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:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL não pode estar vazio" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Não pôde criar ficheiro" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Não pôde criar pasta" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Erro ao obter URL" @@ -217,35 +217,35 @@ msgstr "Erro ao mover o ficheiro" msgid "Error" msgstr "Erro" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Não pôde renomear o ficheiro" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Erro ao apagar o ficheiro." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "A carregar %n ficheiro" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 25f2d4d437..1d201c8a06 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ 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/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Erro" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Ficheiros Apagados" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "Restaurado" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Não hà ficheiros. O lixo está vazio!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nome" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Apagado" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Eliminar" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Ficheiros Apagados" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index a1b1ad3373..2d44adbc09 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index ca466d20d1..926c61b319 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 720dcd043e..d0f54e679b 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -146,132 +146,132 @@ msgstr "Setări" msgid "Saving..." msgstr "Se salvează..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "astăzi" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ieri" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "ultima lună" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "ultimul an" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "ani în urmă" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Alege" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nu" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Un conflict de fișier" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Ce fișiere vrei să păstrezi?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Dacă alegi ambele versiuni, fișierul copiat va avea un număr atașat la denumirea sa." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Anulare" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Continuă" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -303,12 +303,12 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Eroare" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -372,71 +372,71 @@ msgstr "Distribuie prin email:" msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grup" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "poate edita" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "control acces" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "creare" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "actualizare" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "ștergere" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "partajare" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Mesajul a fost expediat" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Atenție" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 6dbdb8198f..56ffcff99f 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -49,7 +49,7 @@ msgid "" "allowed." msgstr "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -134,15 +134,15 @@ msgstr "Eroare la scrierea pe disc" msgid "Not enough storage available" msgstr "Nu este disponibil suficient spațiu" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Încărcare eșuată. Nu se poate găsi fișierul încărcat" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Dosar nevalid." @@ -150,53 +150,53 @@ msgstr "Dosar nevalid." msgid "Files" msgstr "Fișiere" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nu se poate încărca {filename} deoarece este un director sau are mărimea de 0 octeți" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Nu se poate obține rezultatul de la server." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL nu poate fi gol" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} există deja" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Nu s-a putut crea fisierul" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Nu s-a putut crea folderul" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -220,37 +220,37 @@ msgstr "Eroare la mutarea fișierului" msgid "Error" msgstr "Eroare" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Nu s-a putut redenumi fisierul" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" msgstr[1] "%n fișiere" msgstr[2] "%n fișiere" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} și {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Se încarcă %n fișier." diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index c94d2142b5..dbec3636ed 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 16:01+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Sterge fisierele" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Eroare" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Nume" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Șterge" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 8e050f6939..ca5e79e740 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 83048aebc9..e4dca6cb3c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b201c601b0..b94a958593 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -159,132 +159,132 @@ msgstr "Конфигурация" msgid "Saving..." msgstr "Сохранение..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "сегодня" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "вчера" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "в прошлом году" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "несколько лет назад" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Выбрать" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Ошибка при загрузке шаблона выбора файлов: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Нет" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ок" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Ошибка загрузки шаблона сообщений: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} конфликт в файлах" msgstr[1] "{count} конфликта в файлах" msgstr[2] "{count} конфликтов в файлах" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Один конфликт в файлах" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Новые файлы" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Какие файлы вы хотите сохранить?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "При выборе обоих версий, к названию копируемого файла будет добавлена цифра" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Отменить" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Продолжить" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(выбраны все)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} выбрано)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Ошибка при загрузке шаблона существующего файла" @@ -316,12 +316,12 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Ошибка" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -385,71 +385,71 @@ msgstr "Поделится через электронную почту:" msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "группа" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "уведомить по почте" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "может редактировать" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "контроль доступа" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "создать" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "обновить" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "удалить" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "открыть доступ" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Письмо отправлено" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Предупреждение" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 41b0e3084b..848ba105ce 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -54,7 +54,7 @@ msgid "" "allowed." msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Целевой каталог был перемещен или удален." @@ -139,15 +139,15 @@ msgstr "Ошибка записи на диск" msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Загрузка не удалась. Невозможно найти загружаемый файл" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Неверный каталог." @@ -155,53 +155,53 @@ msgstr "Неверный каталог." msgid "Files" msgstr "Файлы" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Невозможно загрузить {filename}, так как это либо каталог, либо файл нулевого размера" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Полный размер файла {size1} превышает лимит по загрузке {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Не достаточно свободного места, Вы загружаете {size1} но осталось только {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Не удалось получить ответ от сервера." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'Shared' - это зарезервированное имя файла в домашнем каталоге" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Не удалось создать файл" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Не удалось создать каталог" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Ошибка получения URL" @@ -225,37 +225,37 @@ msgstr "Ошибка при перемещении файла" msgid "Error" msgstr "Ошибка" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Не удалось переименовать файл" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Ошибка при удалении файла." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n каталог" msgstr[1] "%n каталога" msgstr[2] "%n каталогов" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файла" msgstr[2] "%n файлов" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Закачка %n файла" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 01e8606600..39a39c11b0 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "%s не может быть удалён навсегда" msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Удалённые файлы" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Ошибка" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Удаленные файлы" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "восстановлен" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Здесь ничего нет. Ваша корзина пуста!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Имя" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Восстановить" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Удалён" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Удалить" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Удаленные файлы" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 70641d2e4e..7e562b8b46 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 82633992ec..3410a87464 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 2379dad798..81640e8ede 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,127 +142,127 @@ msgstr "සිටුවම්" msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "අද" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "තෝරන්න" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ඔව්" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "එපා" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "හරි" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "එපා" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +294,12 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "දෝෂයක්" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -363,71 +363,71 @@ msgstr "විද්යුත් තැපෑල මඟින් බෙදා msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "කණ්ඩායම" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "ප්රවේශ පාලනය" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "සදන්න" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "මකන්න" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "අවවාදය" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 80c2555ba9..65cb451481 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "තැටිගත කිරීම අසාර්ථකයි" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "ගොනු" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "දෝෂයක්" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index d34ed9fd0b..c8ef3d0172 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "දෝෂයක්" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "නම" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "මකා දමන්න" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 2b1066d995..18a9854df9 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 122cf02624..351223d7ba 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 87b17aa9d8..bdf4db71d4 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,132 +144,132 @@ msgstr "Nastavenia" msgid "Saving..." msgstr "Ukladám..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "dnes" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "včera" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "minulý rok" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "pred rokmi" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Vybrať" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Chyba pri nahrávaní šablóny výberu súborov: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Áno" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nie" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Chyba pri nahrávaní šablóny správy: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} konflikt súboru" msgstr[1] "{count} konflikty súboru" msgstr[2] "{count} konfliktov súboru" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Jeden konflikt súboru" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nové súbory" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Ktoré súbory chcete ponechať?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Ak zvolíte obe verzie, názov nakopírovaného súboru bude doplnený o číslo." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Pokračovať" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(všetko vybrané)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} vybraných)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Chyba pri nahrávaní šablóny existencie súboru" @@ -301,12 +301,12 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -370,71 +370,71 @@ msgstr "Zdieľať cez email:" msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "skupina" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "informovať emailom" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "prístupové práva" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "vytvoriť" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "aktualizovať" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "vymazať" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "zdieľať" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email odoslaný" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Varovanie" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index c3cda0fa89..7f7762eae3 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:42+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Cieľový priečinok bol premiestnený alebo odstránený." @@ -128,15 +128,15 @@ msgstr "Zápis na disk sa nepodaril" msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Neplatný priečinok." @@ -144,53 +144,53 @@ msgstr "Neplatný priečinok." msgid "Files" msgstr "Súbory" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nemožno nahrať súbor {filename}, pretože je to priečinok, alebo má 0 bitov" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Celková veľkosť súboru {size1} prekračuje upload limit {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Nie je dostatok voľného miesta, chcete nahrať {size1} ale k dispozíciji je len {size2}" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Odosielanie zrušené." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Nepodarilo sa dostať výsledky zo servera." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL nemôže byť prázdna" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Nemožno vytvoriť súbor" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Chyba pri načítavaní URL" @@ -214,37 +214,37 @@ msgstr "Chyba pri presúvaní súboru" msgid "Error" msgstr "Chyba" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Nemožno premenovať súbor" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Chyba pri mazaní súboru." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" msgstr[1] "%n súbory" msgstr[2] "%n súborov" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávam %n súbor" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 4f4d9bc61a..e6224e89fc 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Nemožno zmazať %s navždy" msgid "Couldn't restore %s" msgstr "Nemožno obnoviť %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Zmazané súbory" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Chyba" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Zmazané súbory" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "obnovené" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Žiadny obsah. Kôš je prázdny!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Názov" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Obnoviť" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Zmazané" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Zmazať" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Zmazané súbory" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 7b4826cc73..6278b3b324 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index cc437b8734..6d28f29b2e 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index c0887239b2..f867acbd3d 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,11 +144,11 @@ msgstr "Nastavitve" msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -156,7 +156,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -164,15 +164,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "danes" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "včeraj" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -180,11 +180,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -192,43 +192,43 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "lansko leto" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "let nazaj" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Izbor" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Napaka nalaganja predloge izbirnika datotek: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "V redu" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Napaka nalaganja predloge sporočil: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} spor datotek" @@ -236,45 +236,45 @@ msgstr[1] "{count} spora datotek" msgstr[2] "{count} spori datotek" msgstr[3] "{count} sporov datotek" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "En spor datotek" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nove datoteke" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Katare datoteke želite ohraniti?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Prekliči" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Nadaljuj" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(vse izbrano)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} izbranih)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Napaka nalaganja predloge obstoječih datotek" @@ -306,12 +306,12 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Napaka" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -375,71 +375,71 @@ msgstr "Pošlji povezavo do dokumenta preko elektronske pošte:" msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "skupina" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z uporabnikom {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "obvesti po elektronski pošti" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "ustvari" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "posodobi" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "izbriše" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "določi souporabo" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Napaka nastavljanja datuma preteka" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Elektronska pošta je poslana" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Opozorilo" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 973e7e04a8..1e9272d4d5 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Ciljna mapa je premaknjena ali izbrisana." @@ -129,15 +129,15 @@ msgstr "Pisanje na disk je spodletelo" msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke." -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Neveljavna mapa." @@ -145,53 +145,53 @@ msgstr "Neveljavna mapa." msgid "Files" msgstr "Datoteke" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ni mogoče poslati datoteke {filename}, saj je to ali mapa ali pa je velikost datoteke 0 bajtov." -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Skupna velikost {size1} presega omejitev velikosti {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Na voljo ni dovolj prostora. Velikost poslane datoteke je {size1}, na voljo pa je je {size2}." -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Ni mogoče pridobiti podatkov s strežnika." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "Polje naslova URL ne sme biti prazno" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo." -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Ni mogoče ustvariti datoteke" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Napaka pridobivanja naslova URL" @@ -215,19 +215,19 @@ msgstr "Napaka premikanja datoteke" msgid "Error" msgstr "Napaka" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Ni mogoče preimenovati datoteke" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Napaka brisanja datoteke." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapa" @@ -235,7 +235,7 @@ msgstr[1] "%n mapi" msgstr[2] "%n mape" msgstr[3] "%n map" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n datoteka" @@ -243,11 +243,11 @@ msgstr[1] "%n datoteki" msgstr[2] "%n datoteke" msgstr[3] "%n datotek" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} in {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Posodabljanje %n datoteke" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index b15be4bfbf..a6351f684f 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -28,38 +28,38 @@ msgstr "Datoteke %s ni mogoče trajno izbrisati." msgid "Couldn't restore %s" msgstr "Ni mogoče obnoviti %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Napaka" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Izbrisane datoteke" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "obnovljeno" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Mapa smeti je prazna." -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Ime" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Obnovi" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Izbrisano" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Izbriši" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Izbrisane datoteke" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index fcc8f3ca12..fd91045bed 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index aeb27061fc..e74f46f26b 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 776c5cef95..5c17765aa8 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,127 +144,127 @@ msgstr "Parametra" msgid "Saving..." msgstr "Duke ruajtur..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "sot" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "dje" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "vite më parë" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Zgjidh" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Po" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Jo" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Në rregull" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Anulo" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -296,12 +296,12 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Veprim i gabuar" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -365,71 +365,71 @@ msgstr "Nda me email:" msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "grupi" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "krijo" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "azhurno" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "elimino" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "nda" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email-i u dërgua" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index d1ac372f74..4232355dcb 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -129,15 +129,15 @@ msgstr "Dështoi shkrimi në disk" msgid "Not enough storage available" msgstr "Hapsira e arkivimit e pamjaftueshme" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Dosje e pavlefshme" @@ -145,53 +145,53 @@ msgstr "Dosje e pavlefshme" msgid "Files" msgstr "Skedarë" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Ngarkimi u anullua" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL-i nuk mund të jetë bosh" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} është ekzistues " -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "I pamundur krijimi i kartelës" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -215,35 +215,35 @@ msgstr "Gabim lëvizjen dokumentave" msgid "Error" msgstr "Gabim" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Në vijim" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" msgstr[1] "%n skedarë" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} dhe {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Po ngarkoj %n skedar" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 9214ca6dec..7ec3e575dc 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Nuk munda ta eliminoj përfundimisht %s" msgid "Couldn't restore %s" msgstr "Nuk munda ta rivendos %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Skedarë të fshirë " -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Veprim i gabuar" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Skedarë të eliminuar" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "rivendosur" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Këtu nuk ka asgjë. Koshi juaj është bosh!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Emri" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Rivendos" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Eliminuar" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Elimino" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Skedarë të eliminuar" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index f837939e7b..8f882f13d2 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index af3fdebe11..f3865d2c2e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 4c5eb4cf73..f609ea8b9f 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,132 +142,132 @@ msgstr "Поставке" msgid "Saving..." msgstr "Чување у току..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "данас" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "јуче" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "месеци раније" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "прошле године" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "година раније" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Одабери" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Не" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "У реду" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -299,12 +299,12 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -368,71 +368,71 @@ msgstr "Подели поштом:" msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "група" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "може да мења" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "права приступа" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "направи" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "ажурирај" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "обриши" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "подели" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Порука је послата" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Упозорење" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index c7edf1b277..ea405fff7b 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "Не могу да пишем на диск" msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "неисправна фасцикла." @@ -143,53 +143,53 @@ msgstr "неисправна фасцикла." msgid "Files" msgstr "Датотеке" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 1af47be23e..d105f0abc3 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Обрисане датотеке" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Овде нема ништа. Корпа за отпатке је празна." -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Име" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Врати" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Обрисано" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Обриши" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 339f9626c2..9603dcd0c1 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index e0f3aec7e6..d713be3271 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index f10dd683cd..df657f78ca 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,132 +144,132 @@ msgstr "Podešavanja" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "Danas" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "juče" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Prije %n dan." msgstr[1] "Prije %n dana." msgstr[2] "Prije %n dana." -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "pre nekoliko meseci" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "prošle godine" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "pre nekoliko godina" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Izaberi" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Otkaži" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -301,12 +301,12 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -370,71 +370,71 @@ msgstr "Deli putem e-maila" msgid "No people found" msgstr "Nema pronađenih ljudi" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Dalje deljenje nije dozvoljeno" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Deljeno u {item} sa {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Ukljoni deljenje" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "dozvoljene izmene" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "napravi" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "ažuriranje" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "brisanje" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "deljenje" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email poslat" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index b4de486ab4..0c17a8d6aa 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "Fajlovi" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "Greška" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 930dd474cc..0098ac3a75 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Greška" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Ime" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Obriši" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 8a850e96d0..dbabd2061b 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 82538a4f5e..0cde3d5680 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index affc664f21..4e288cd7ea 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 18:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: AsavarTzeth <asavartzeth@gmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -150,127 +150,127 @@ msgstr "Inställningar" msgid "Saving..." msgstr "Sparar..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "i dag" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "i går" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "förra månaden" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "månader sedan" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "förra året" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "år sedan" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Välj" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Fel uppstod för filväljarmall: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Nej" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Fel uppstod under inläsningen av meddelandemallen: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} filkonflikt" msgstr[1] "{count} filkonflikter" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "En filkonflikt" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Nya filer" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "Filer som redan existerar" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Vilken fil vill du behålla?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Om du väljer båda versionerna kommer de kopierade filerna ha nummer tillagda i filnamnet." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Fortsätt" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(Alla valda)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} valda)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Fel uppstod filmall existerar" @@ -302,12 +302,12 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Fel" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Fel vid delning" @@ -371,71 +371,71 @@ msgstr "Dela via e-post:" msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "Grupp" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "informera via e-post" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "kan redigera" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "skapa" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "uppdatera" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "radera" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "dela" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Varning" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index bb8d42d051..a1f2093bc2 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-06 01:55-0400\n" -"PO-Revision-Date: 2014-04-05 18:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: AsavarTzeth <asavartzeth@gmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgid "" "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Målmappen har flyttats eller tagits bort." @@ -136,15 +136,15 @@ msgstr "Misslyckades spara till disk" msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -152,53 +152,53 @@ msgstr "Felaktig mapp." msgid "Files" msgstr "Filer" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes." -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Totala filstorleken {size1} överskrider uppladdningsgränsen {size2}" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Inte tillräckligt med ledigt utrymme, du laddar upp {size1} men endast {size2} finns kvar." -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Gick inte att hämta resultat från server." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL kan ej vara tomt" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Kunde ej skapa fil" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Kunde ej skapa katalog" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Fel vid hämtning av URL" @@ -222,35 +222,35 @@ msgstr "Fel uppstod vid flyttning av fil" msgid "Error" msgstr "Fel" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Kan ej byta filnamn" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Kunde inte ta bort filen." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} och {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laddar upp %n fil" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 8b48f32bd8..b27247db1f 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -29,38 +29,38 @@ msgstr "Kunde inte radera %s permanent" msgid "Couldn't restore %s" msgstr "Kunde inte återställa %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Raderade filer" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Fel" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Raderade filer" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "återställd" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting här. Din papperskorg är tom!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Namn" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Återskapa" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Raderad" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Radera" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Raderade filer" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index fee602b13c..d094158f4f 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 11:20+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: henrikhjelm <mailto@henrikhjelm.se>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 1471689202..4161dc8681 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 11:43+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: henrikhjelm <mailto@henrikhjelm.se>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 9ac011d35d..71bb9a90fc 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,127 +142,127 @@ msgstr "அமைப்புகள்" msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "இன்று" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "தெரிவுசெய்க " -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ஆம்" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "இல்லை" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "சரி" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "இரத்து செய்க" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +294,12 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "வழு" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -363,71 +363,71 @@ msgstr "மின்னஞ்சலினூடான பகிர்வு: " msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "குழு" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "நீக்குக" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "எச்சரிக்கை" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 6c806272a4..59125f40d8 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "வட்டில் எழுத முடியவில்லை" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "கோப்புகள்" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "வழு" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index db48899f2b..daa23bb0de 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "வழு" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "பெயர்" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "நீக்குக" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index df61ff7f5b..edea4a40fb 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index df71f1244b..8776b8c687 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 01416c7db5..09c8064439 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,127 +143,127 @@ msgstr "అమరికలు" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n నిమిషం క్రితం" msgstr[1] "%n నిమిషాల క్రితం" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n గంట క్రితం" msgstr[1] "%n గంటల క్రితం" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "ఈరోజు" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n రోజు క్రితం" msgstr[1] "%n రోజుల క్రితం" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n నెల క్రితం" msgstr[1] "%n నెలల క్రితం" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "అవును" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "కాదు" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "సరే" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "కొనసాగించు" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "పొరపాటు" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -364,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "తొలగించు" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "హెచ్చరిక" diff --git a/l10n/te/files.po b/l10n/te/files.po index 97c2ad4d8d..e9b3f646dd 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "పొరపాటు" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 4f95953300..4e49411bff 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "పొరపాటు" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "పేరు" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "తొలగించు" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index ba7e8d9418..2cafc7c1bf 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 65ed23e9c5..8d069aa14a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 6209b8c0b7..576591b9f8 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -259,11 +259,11 @@ msgstr "" msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b2d90dbfed..85b4f6cff1 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:587 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1101 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:614 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:777 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:802 js/filelist.js:879 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:803 js/filelist.js:880 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:810 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1040 js/filelist.js:1078 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4d30ec7fba..4ce00890ea 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index cf6575886b..5df6d0e30e 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 3ae790dd7b..5b5e49eb1b 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 562a8d0895..6f6738bd79 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index c3c17e6bd2..484ba898c0 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index c2d7674389..66aa4ece37 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -338,20 +338,20 @@ msgstr "" msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 3de22c3c51..bd9540914a 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -330,20 +330,20 @@ msgstr "" msgid "years ago" msgstr "" -#: user/manager.php:246 +#: user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: user/manager.php:251 +#: user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: user/manager.php:255 +#: user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: user/manager.php:260 +#: user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 97d2877c64..4ac6477ef5 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index c5e81809f4..f1b4e61a2a 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 584fd84a76..bf8580b5dc 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: 2014-04-15 01:54-0400\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 3ff654362b..2782a3812c 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,122 +142,122 @@ msgstr "ตั้งค่า" msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "วันนี้" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "เลือก" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ตกลง" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "ไม่ตกลง" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "ตกลง" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "ไฟล์ใหม่" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "ยกเลิก" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +289,12 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -358,71 +358,71 @@ msgstr "แชร์ผ่านทางอีเมล" msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "กลุ่มผู้ใช้งาน" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "สร้าง" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "อัพเดท" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "ลบ" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "แชร์" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "คำเตือน" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 3c11a5cfdd..e770e53383 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" @@ -143,53 +143,53 @@ msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" msgid "Files" msgstr "ไฟล์" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "ข้อผิดพลาด" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index c111ab0ef1..71833cb7c0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "ข้อผิดพลาด" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "ไฟล์ที่ลบทิ้ง" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "ชื่อ" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "คืนค่า" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "ลบแล้ว" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "ลบ" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "ไฟล์ที่ลบทิ้ง" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 8e0b4bf03e..029e848b87 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index bf395b92e1..05c84d1313 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index cc1c42a783..eb7105868b 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-11 00:20+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -262,11 +262,11 @@ msgstr "Devam et" msgid "(all selected)" msgstr "(tümü seçildi)" -#: js/oc-dialogs.js:444 js/oc-dialogs.js:457 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} seçildi)" -#: js/oc-dialogs.js:465 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Dosya mevcut şablonu yüklenirken hata" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 18b271aa1a..3f8226df1d 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-06 01:55-0400\n" -"PO-Revision-Date: 2014-04-05 14:30+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Hedef klasör taşındı veya silindi." @@ -131,15 +131,15 @@ msgstr "Diske yazılamadı" msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -147,53 +147,53 @@ msgstr "Geçersiz dizin." msgid "Files" msgstr "Dosyalar" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "Toplam dosya boyutu {size1}, {size2} gönderme sınırını aşıyor" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Yeterince boş alan yok. Gönderdiğiniz boyut {size1} ancak {size2} alan mevcut" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Sunucudan sonuç alınamadı." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL boş olamaz" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Dosya oluşturulamadı" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Klasör oluşturulamadı" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "Adres getirilirken hata" @@ -217,35 +217,35 @@ msgstr "Dosya taşıma hatası" msgid "Error" msgstr "Hata" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index d4f9948df3..e3d0ae59b8 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 16:50+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 68115565da..deb25c1af2 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 13:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index d5252c96ab..8a7ded5dfe 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 13:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index ca775aa5dc..19bde853e7 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -142,122 +142,122 @@ msgstr "تەڭشەكلەر" msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "بۈگۈن" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ھەئە" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "ياق" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "جەزملە" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "ۋاز كەچ" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +289,12 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "خاتالىق" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "" @@ -358,71 +358,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "گۇرۇپپا" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 35888bf4d0..f9d8866073 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "دىسكىغا يازالمىدى" msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "ھۆججەتلەر" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "يۈكلەشتىن ۋاز كەچتى." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "خاتالىق" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 9f90cc10b2..31b2c70a5b 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -27,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "خاتالىق" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "ئاتى" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "ئۆچۈرۈلدى" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "ئۆچۈر" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index cea3686319..fe39905af3 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a2512c6187..1675450b5c 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 874216523c..9bfa59aee1 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -143,132 +143,132 @@ msgstr "Налаштування" msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "сьогодні" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "вчора" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "минулого місяця" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "місяці тому" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "минулого року" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "роки тому" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Обрати" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Помилка при завантаженні шаблону вибору: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Так" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Ні" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Ok" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Помилка при завантаженні шаблону повідомлення: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} файловий конфлікт" msgstr[1] "{count} файлових конфліктів" msgstr[2] "{count} файлових конфліктів" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Один файловий конфлікт" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "Нових Файлів" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Які файли ви хочете залишити?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Якщо ви оберете обидві версії, скопійований файл буде мати номер, доданий у його ім'я." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Відмінити" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Продовжити" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(все вибрано)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} вибрано)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Помилка при завантаженні файлу існуючого шаблону" @@ -300,12 +300,12 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Помилка" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -369,71 +369,71 @@ msgstr "Опублікувати через Ел. пошту:" msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "група" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "повідомити по Email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "може редагувати" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "контроль доступу" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "створити" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "оновити" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "видалити" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "опублікувати" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Ел. пошта надіслана" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Попередження" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 5b0573fee7..af74248bb4 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -128,15 +128,15 @@ msgstr "Невдалося записати на диск" msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Невірний каталог." @@ -144,53 +144,53 @@ msgstr "Невірний каталог." msgid "Files" msgstr "Файли" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL не може бути порожнім" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Не вдалося створити файл" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Не вдалося створити теку" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -214,37 +214,37 @@ msgstr "Помилка переміщення файлу" msgid "Error" msgstr "Помилка" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Неможливо перейменувати файл" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файлів" msgstr[2] "%n файли" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 1a07d7de31..8c04df52af 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +28,38 @@ msgstr "Неможливо видалити %s назавжди" msgid "Couldn't restore %s" msgstr "Неможливо відновити %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "Видалено файлів" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Помилка" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "Видалено Файлів" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "відновлено" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "Нічого немає. Ваший кошик для сміття пустий!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "Ім'я" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Відновити" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Видалено" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Видалити" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "Видалено Файлів" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 79039c8f7d..bf659a93c1 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index dd1dd64f7d..01d20e34b1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index b00e1bcc89..b00b13ab25 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,127 +142,127 @@ msgstr "سیٹینگز" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "منتخب کریں" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ہاں" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "نہیں" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "اوکے" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "منسوخ کریں" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +294,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "ایرر" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -363,71 +363,71 @@ msgstr "" msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "ختم کریں" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "شئیر کریں" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 4a9be83d4b..1d52677ac9 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "ایرر" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 0d58e5738a..9ad17869f3 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "ایرر" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index bb3d35d743..5bb896a5f8 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 8e90c3b5bc..33f736c85b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index ed1b8f6dd8..4cc800ca83 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -146,122 +146,122 @@ msgstr "Cài đặt" msgid "Saving..." msgstr "Đang lưu..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n phút trước" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n giờ trước" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "hôm nay" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ngày trước" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "tháng trước" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n tháng trước" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "tháng trước" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "năm trước" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "năm trước" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "Chọn" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "Lỗi khi tải mẫu tập tin picker: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Có" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "Không" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "Đồng ý" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "Lỗi khi tải mẫu thông điệp: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} tập tin xung đột" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "Một tập tin xung đột" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "File mới" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "Bạn muốn tiếp tục với những tập tin nào?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "Nếu bạn chọn cả hai phiên bản, tập tin được sao chép sẽ được đánh thêm số vào tên của nó." -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Hủy" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "Tiếp tục" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(Tất cả các lựa chọn)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "({count} được chọn)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "Lỗi khi tải tập tin mẫu đã tồn tại" @@ -293,12 +293,12 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "Lỗi" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -362,71 +362,71 @@ msgstr "Chia sẻ thông qua email" msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "nhóm" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "Thông báo qua email" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "tạo" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "cập nhật" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "xóa" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "chia sẻ" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email đã được gửi" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "Cảnh báo" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 709b3b848f..97655a16ce 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -131,15 +131,15 @@ msgstr "Không thể ghi " msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "Tải lên thất bại. Không thể tìm thấy tập tin được tải lên" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "Tải lên thất bại. Không thể có được thông tin tập tin." -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" @@ -147,53 +147,53 @@ msgstr "Thư mục không hợp lệ" msgid "Files" msgstr "Tập tin" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "không thể tải {filename} lên do nó là một thư mục hoặc có kích thước bằng 0 byte" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "Không thể nhận được kết quả từ máy chủ." -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL không thể để trống" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "Không thể tạo file" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "Không thể tạo thư mục" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -217,33 +217,33 @@ msgstr "Lỗi di chuyển tập tin" msgid "Error" msgstr "Lỗi" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "Không thể đổi tên file" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "Lỗi xóa file," -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n thư mục" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tập tin" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} và {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Đang tải lên %n tập tin" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index dca3fff20a..d1d916d367 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "Không thể xóa %s vĩnh viễn" msgid "Couldn't restore %s" msgstr "Không thể khôi phục %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "File đã bị xóa" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "Lỗi" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "File đã xóa" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "khôi phục" -#: templates/index.php:7 +#: templates/index.php:6 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:20 +#: templates/index.php:19 msgid "Name" msgstr "Tên" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "Khôi phục" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "Đã xóa" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "Xóa" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "File đã xóa" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 6095c60404..f62d71cb7e 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 5cdee3dcf7..29a39261a8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 01f7441f45..2f81ecf4ea 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -147,122 +147,122 @@ msgstr "设置" msgid "Saving..." msgstr "保存中" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "秒前" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "今天" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "昨天" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "上月" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "月前" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "去年" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "选择(&C)..." -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "加载文件分拣模板出错: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "否" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "好" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "加载消息模板出错: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} 个文件冲突" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "1个文件冲突" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "新文件" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "想要保留哪一个文件呢?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "如果同时选择了连个版本,复制的文件名将会添加上一个数字。" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "继续" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(选中全部)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "(选择了{count}个)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "加载文件存在性模板失败" @@ -294,12 +294,12 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "错误" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "共享时出错" @@ -363,71 +363,71 @@ msgstr "通过Email共享" msgid "No people found" msgstr "未找到此人" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "组" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "取消共享" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "以邮件通知" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "可以修改" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "访问控制" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "创建" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "更新" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "删除" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "共享" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "邮件已发送" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "警告" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 6d47ffa6b6..77df595e7f 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -131,15 +131,15 @@ msgstr "写入磁盘失败" msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "上传失败。不能发现上传的文件" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "上传失败。不能获取文件信息。" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "无效文件夹。" @@ -147,53 +147,53 @@ msgstr "无效文件夹。" msgid "Files" msgstr "文件" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "不能上传文件 {filename} ,由于它是一个目录或者为0字节" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "上传已取消" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "不能从服务器得到结果" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL不能为空" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "主目录里 'Shared' 是系统预留目录名" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "不能创建文件" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "不能创建文件夹" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "获取URL出错" @@ -217,33 +217,33 @@ msgstr "移动文件错误" msgid "Error" msgstr "错误" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "等待" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "不能重命名文件" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "删除文件出错。" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "上传 %n 个文件" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 8a27dc06d6..996e495d97 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "无法彻底删除文件%s" msgid "Couldn't restore %s" msgstr "无法恢复%s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "已删除文件" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "错误" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "已删除文件" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "已恢复" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "这里没有东西. 你的回收站是空的!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "名称" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "恢复" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "已删除" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "删除" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "已删除文件" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 5ef03b66e0..c0450bf1c7 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 1cf0e12443..882b10118b 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index a3f0d6b64e..1c9c0476f6 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -142,122 +142,122 @@ msgstr "設定" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "今日" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "昨日" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "前一月" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "個月之前" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "Yes" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "No" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "OK" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +289,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -358,71 +358,71 @@ msgstr "以電郵分享" msgid "No people found" msgstr "找不到" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "取消分享" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "新增" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "更新" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "刪除" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "分享" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "郵件已傳" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index f42c481a55..ebc0166930 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "文件" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "錯誤" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 48a2e1f28e..11f240157a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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,38 +27,38 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "錯誤" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "名稱" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "刪除" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 378dc0a4b1..b2f87f3561 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index b2f150dcbf..df5884c6b2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 6922de1a28..84b69c5f75 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 06:10+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -144,122 +144,122 @@ msgstr "設定" msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" msgstr "今天" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" msgstr "昨天" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" msgstr "上個月" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" msgstr "幾個月前" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" msgstr "去年" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" msgstr "幾年前" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "選擇" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "載入檔案選擇器樣板出錯: {error}" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "否" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "好" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "載入訊息樣板出錯: {error}" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "{count} 個檔案衝突" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "一個檔案衝突" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "新檔案" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "您要保留哪一個檔案?" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "如果您同時選擇兩個版本,被複製的那個檔案名稱後面會加上編號" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "繼續" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "(已全選)" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "(已選 {count} 項)" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "載入檔案存在樣板出錯" @@ -291,12 +291,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 #: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:787 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -360,71 +360,71 @@ msgstr "透過電子郵件分享:" msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "群組" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "取消分享" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "以 email 通知" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" msgstr "可編輯" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "存取控制" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "建立" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "更新" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "刪除" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "分享" -#: js/share.js:698 +#: js/share.js:718 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:711 +#: js/share.js:731 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:729 +#: js/share.js:749 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:754 +#: js/share.js:774 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:765 +#: js/share.js:785 msgid "Email sent" msgstr "Email 已寄出" -#: js/share.js:789 +#: js/share.js:809 msgid "Warning" msgstr "警告" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index c2eeb6fc27..fa6a8e3db2 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:56+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:40+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -129,15 +129,15 @@ msgstr "寫入硬碟失敗" msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "上傳失敗,無法取得檔案資訊" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "無效的資料夾" @@ -145,53 +145,53 @@ msgstr "無效的資料夾" msgid "Files" msgstr "檔案" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "因為 {filename} 是個目錄或是大小為零,所以無法上傳" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "上傳已取消" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "無法從伺服器取回結果" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中,離開此頁面將會取消上傳。" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "URL 不能留空" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "在家目錄中不能使用「共享」作為檔名" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "無法建立檔案" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "無法建立資料夾" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -215,33 +215,33 @@ msgstr "移動檔案失敗" msgid "Error" msgstr "錯誤" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "等候中" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "無法重新命名" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個檔案正在上傳" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index b05b0b30ba..be5b92f2b3 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+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" @@ -28,38 +28,38 @@ msgstr "無法永久刪除 %s" msgid "Couldn't restore %s" msgstr "無法還原 %s" -#: js/filelist.js:23 +#: js/filelist.js:3 msgid "Deleted files" msgstr "回收桶" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 msgid "Error" msgstr "錯誤" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "已刪除的檔案" + +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "已還原" -#: templates/index.php:7 +#: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" msgstr "您的回收桶是空的!" -#: templates/index.php:20 +#: templates/index.php:19 msgid "Name" msgstr "名稱" -#: templates/index.php:23 templates/index.php:25 +#: templates/index.php:22 templates/index.php:24 msgid "Restore" msgstr "還原" -#: templates/index.php:31 +#: templates/index.php:30 msgid "Deleted" msgstr "已刪除" -#: templates/index.php:34 templates/index.php:35 +#: templates/index.php:33 templates/index.php:34 msgid "Delete" msgstr "刪除" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "已刪除的檔案" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index fe7643d20d..1e1d3a7669 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index dd95586e56..8f3044f44d 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-16 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 05:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 477cdf2925..22d8c457f5 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), "last year" => "l'any passat", "years ago" => "anys enrere", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Només els caràcters següents estan permesos en el nom d'usuari: \"a-z\", \"A-Z\", \"0-9\" i \"_.@-\"", "A valid username must be provided" => "Heu de facilitar un nom d'usuari vàlid", "A valid password must be provided" => "Heu de facilitar una contrasenya vàlida", "The username is already being used" => "El nom d'usuari ja està en ús" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 54fe0bbcf3..9f1d51fd62 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "No s'ha pogut canviar el nom complet", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", +"Files decrypted successfully" => "Els fitxers s'han desencriptat amb èxit", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "No es poden desencriptar els fitxers. Comproveu owncloud.log o demaneu-ho a l'administrador.", +"Couldn't decrypt your files, check your password and try again" => "No s'han pogut desencriptar els fitxers, comproveu la contrasenya i proveu-ho de nou", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", "Unable to delete group" => "No es pot eliminar el grup", @@ -94,6 +97,8 @@ $TRANSLATIONS = array( "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques.", "Cron" => "Cron", "Last cron was executed at %s." => "L'últim cron s'ha executat el %s", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "L'últim cron es va executar a %s. Fa més d'una hora, alguna cosa sembla que va malament.", +"Cron was not executed yet!" => "El cron encara no s'ha executat!", "Execute one task with each page loaded" => "Executa una tasca per cada paquet carregat", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts.", -- GitLab From 9dabed04a411df4baec9bf6a52ce77dad4a87ce4 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 10:49:16 +0200 Subject: [PATCH 077/187] do not show menu toggle on public share links as there is no menu --- core/css/mobile.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index 821da61929..b8f0dbc7ec 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -7,6 +7,11 @@ background-position: right 26px; padding-right: 16px !important; } +/* do not show menu toggle on public share links as there is no menu */ +#body-public #owncloud.menutoggle { + background-image: none; + padding-right: 0 !important; +} /* compress search box on mobile, expand when focused */ .searchbox input[type="search"] { -- GitLab From 924aee718cd1be5ef40d40985b4bebee1db12cf2 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 14:58:27 +0200 Subject: [PATCH 078/187] fix shift of icons in 'New' menu in IE8/9, fix #7987 --- apps/files/css/files.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 1bac5d2b7d..474f1af072 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -51,7 +51,7 @@ margin: 5px; padding-left: 42px; padding-bottom: 2px; - background-position: initial; + background-position: left center; cursor: pointer; } #new > ul > li > p { -- GitLab From 7110ecbf06e18ad98d40acb2c762f9f520dec430 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 15:31:15 +0200 Subject: [PATCH 079/187] fix error display on smaller screens, fix #8090 --- core/css/mobile.css | 8 ++++++++ core/css/styles.css | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/core/css/mobile.css b/core/css/mobile.css index 821da61929..079fd2c017 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -103,4 +103,12 @@ } +/* fix error display on smaller screens */ +.error-wide { + width: 100%; + margin-left: 0 !important; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + } diff --git a/core/css/styles.css b/core/css/styles.css index 57e2c4479a..6ca7889395 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -586,8 +586,8 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } .error-wide { - width: 800px; - margin-left: -250px; + width: 700px; + margin-left: -200px !important; } /* Fixes for log in page, TODO should be removed some time */ -- GitLab From 547ddf77754fb73a49ce2aa89ea1f0bb28c353af Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 15:53:38 +0200 Subject: [PATCH 080/187] remove duplication of 'header-right' element, also make it overflow when too wide --- apps/files_sharing/css/public.css | 13 ------------- core/css/styles.css | 25 ++++++++++++++++++++++--- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index f0b9b04491..ebf19f50f0 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -14,19 +14,6 @@ body { padding:7px; } -.header-right { - padding: 0; - height: 32px; -} - -#details { - color:#fff; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - filter: alpha(opacity=50); - opacity: .5; - padding-right: 5px; -} - #controls { left: 0; } diff --git a/core/css/styles.css b/core/css/styles.css index 57e2c4479a..c483950f30 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -33,9 +33,28 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d44',GradientType=0 ); /* IE6-9 */ } -#owncloud { position:absolute; top:0; left:0; padding:6px; padding-bottom:0; } -.header-right { float:right; vertical-align:middle; padding:0.5em; } -.header-right > * { vertical-align:middle; } +#owncloud { + position: absolute; + top: 0; + left: 0; + padding: 6px; + padding-bottom: 0; +} + +/* info part on the right, used e.g. for info on who shared something */ +.header-right { + position: absolute; + right: 0; + padding-right: 10px; + color: #fff; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=50); + opacity: .5; + max-width: 40%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} /* Profile picture in header */ #header .avatardiv { -- GitLab From 9c6f8e59ae9f483e3285c8f25ed445758c79543b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 16:26:41 +0200 Subject: [PATCH 081/187] fix header code duplication, code style fixes --- apps/files_sharing/css/public.css | 16 --------------- core/css/styles.css | 33 ++++++++++++++++++++++++++----- 2 files changed, 28 insertions(+), 21 deletions(-) diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index ebf19f50f0..062444f496 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -1,19 +1,3 @@ -body { - height: auto; -} - -#header { - background-color: #1d2d44; - height:32px; - left:0; - line-height:32px; - position:fixed; - right:0; - top:0; - z-index:100; - padding:7px; -} - #controls { left: 0; } diff --git a/core/css/styles.css b/core/css/styles.css index c483950f30..28d7ef30f5 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -12,13 +12,30 @@ table, td, th { vertical-align:middle; } a { border:0; color:#000; text-decoration:none;} a, a *, input, input *, select, .button span, label { cursor:pointer; } ul { list-style:none; } -body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Arial,FreeSans,sans-serif; color:#000; } + + +body { + background: #fefefe; + font: normal .8em/1.6em "Helvetica Neue",Helvetica,Arial,FreeSans,sans-serif; + color: #000; + height: auto; +} /* HEADERS */ -#body-user #header, #body-settings #header { - position:fixed; top:0; left:0; right:0; z-index:100; height:45px; line-height:2.5em; - background:#1d2d44 url('../img/noise.png') repeat; +#body-user #header, +#body-settings #header, +#body-public #header { + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 100; + height: 45px; + line-height: 2.5em; + background: #1d2d44 url('../img/noise.png') repeat; + -moz-box-sizing: border-box; + box-sizing: border-box; } #body-login { @@ -50,10 +67,16 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter: alpha(opacity=50); opacity: .5; + height: 100%; max-width: 40%; white-space: nowrap; - overflow: hidden; +} +.header-right #details { + display: inline-block; + margin-top: 6px; + width: 100%; text-overflow: ellipsis; + overflow: hidden; } /* Profile picture in header */ -- GitLab From 9434ed44f8b83505ddf5e7ed9e51ec946665e7a1 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 16:43:35 +0200 Subject: [PATCH 082/187] add max-width to directLink input to prevent overflow --- apps/files_sharing/css/public.css | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index f0b9b04491..bcdceed593 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -115,4 +115,5 @@ thead { .directLink input { margin-left: 5px; width: 300px; + max-width: 90%; } -- GitLab From d0f8cc20c5c781d773b9d7c68e6f55e1f17e78c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Wed, 16 Apr 2014 17:16:03 +0200 Subject: [PATCH 083/187] videos which are shorter then 5 seconds will now get a proper thumbnail at 1 second --- lib/private/preview/movies.php | 37 +++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index 7e0ff51ad2..ed28a03afa 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -42,7 +42,6 @@ if (!\OC_Util::runningOnWindows()) { public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { // TODO: use proc_open() and stream the source file ? $absPath = \OC_Helper::tmpFile(); - $tmpPath = \OC_Helper::tmpFile(); $handle = $fileview->fopen($path, 'rb'); @@ -51,14 +50,39 @@ if (!\OC_Util::runningOnWindows()) { $firstmb = stream_get_contents($handle, 5242880); file_put_contents($absPath, $firstmb); + $result = $this->generateThumbNail($maxX, $maxY, $absPath, 5); + if ($result === false) { + $result = $this->generateThumbNail($maxX, $maxY, $absPath, 1); + if ($result === false) { + $result = $this->generateThumbNail($maxX, $maxY, $absPath, 0); + } + } + + unlink($absPath); + + + return $result; + } + + /** + * @param $maxX + * @param $maxY + * @param $absPath + * @param $tmpPath + * @param $second + * @return bool|\OC_Image + */ + private function generateThumbNail($maxX, $maxY, $absPath, $second) + { + $tmpPath = \OC_Helper::tmpFile(); + if (self::$avconvBinary) { - $cmd = self::$avconvBinary . ' -an -y -ss 5'. + $cmd = self::$avconvBinary . ' -an -y -ss ' . $second . ' -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 -vsync 1 ' . escapeshellarg($tmpPath) . ' > /dev/null 2>&1'; - } - else { - $cmd = self::$ffmpegBinary . ' -y -ss 5' . + } else { + $cmd = self::$ffmpegBinary . ' -y -ss ' .$second . ' -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1' . ' -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . @@ -68,14 +92,13 @@ if (!\OC_Util::runningOnWindows()) { exec($cmd, $output, $returnCode); - unlink($absPath); - if ($returnCode === 0) { $image = new \OC_Image(); $image->loadFromFile($tmpPath); unlink($tmpPath); return $image->valid() ? $image : false; } + unlink($tmpPath); return false; } } -- GitLab From 6a79b7f2b56b81f2800debf966beed5d5d7c7223 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 17:43:15 +0200 Subject: [PATCH 084/187] fix sizing for fields when password is shown --- core/css/styles.css | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 7af80e31ff..477b4263ca 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -402,7 +402,12 @@ input[type="submit"].enabled { } /* Icons for username and password fields to better recognize them */ -#adminlogin, #adminpass, #user, #password { +#adminlogin, +#adminpass, +input[name='adminpass-clone'], +#user, +#password, +input[name='password-clone'] { width: 223px !important; padding-left: 36px !important; } @@ -420,14 +425,6 @@ input[type="submit"].enabled { #adminpass-icon, #password-icon { top: 1.1em; } -input[name="password-clone"] { - padding-left: 1.8em; - width: 11.7em !important; -} -input[name="adminpass-clone"] { - padding-left: 1.8em; - width: 11.7em !important; -} /* General new input field look */ #body-login input[type="text"], -- GitLab From 067a5cdee734ace6628b93a82c23f61fe1245db3 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 17:44:05 +0200 Subject: [PATCH 085/187] fix database infield label indentation --- core/css/styles.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 477b4263ca..5efa770783 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -472,7 +472,9 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } overflow: hidden; text-overflow: ellipsis; } -#body-login #databaseField .infield { padding-left:0; } +#body-login #databaseField .infield { + margin-left: 0; +} #body-login form input[type="checkbox"]+label { position: relative; margin: 0; -- GitLab From 03ad908c30e44c9b4776f8f9d8e83931e6f3fbd8 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Wed, 16 Apr 2014 17:44:38 +0200 Subject: [PATCH 086/187] fix overlapping infield labels --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 5efa770783..af817ead03 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -464,7 +464,7 @@ p.infield { position:relative; } label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form label.infield { /* labels are ellipsized when too long, keep them short */ position: absolute; - width: auto; + width: 82%; margin-left: 26px; font-size: 19px; color: #aaa; -- GitLab From 81751cb616b843c6533de30a2ae73a7846819fcb Mon Sep 17 00:00:00 2001 From: Bart Visscher <bartv@thisnet.nl> Date: Wed, 16 Apr 2014 17:54:10 +0200 Subject: [PATCH 087/187] Add missing param hint --- apps/user_ldap/lib/wizardresult.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/user_ldap/lib/wizardresult.php b/apps/user_ldap/lib/wizardresult.php index 9c154503f5..9e0936faa6 100644 --- a/apps/user_ldap/lib/wizardresult.php +++ b/apps/user_ldap/lib/wizardresult.php @@ -38,6 +38,7 @@ class WizardResult { /** * @param string $key + * @param array|string $values */ public function addOptions($key, $values) { if(!is_array($values)) { -- GitLab From a4389340b822ac8cae051811d838b6c607f88dbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Wed, 16 Apr 2014 19:45:55 +0200 Subject: [PATCH 088/187] escape $second + update PHPDoc --- lib/private/preview/movies.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index ed28a03afa..72ccfadc6e 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -65,11 +65,11 @@ if (!\OC_Util::runningOnWindows()) { } /** - * @param $maxX - * @param $maxY - * @param $absPath - * @param $tmpPath - * @param $second + * @param int $maxX + * @param int $maxY + * @param string $absPath + * @param string $tmpPath + * @param int $second * @return bool|\OC_Image */ private function generateThumbNail($maxX, $maxY, $absPath, $second) @@ -77,12 +77,12 @@ if (!\OC_Util::runningOnWindows()) { $tmpPath = \OC_Helper::tmpFile(); if (self::$avconvBinary) { - $cmd = self::$avconvBinary . ' -an -y -ss ' . $second . + $cmd = self::$avconvBinary . ' -an -y -ss ' . escapeshellarg($second) . ' -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 -vsync 1 ' . escapeshellarg($tmpPath) . ' > /dev/null 2>&1'; } else { - $cmd = self::$ffmpegBinary . ' -y -ss ' .$second . + $cmd = self::$ffmpegBinary . ' -y -ss ' . escapeshellarg($second) . ' -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1' . ' -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . -- GitLab From 81c23b02da5eff64a769e3b683a2e581775c49e7 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Wed, 16 Apr 2014 21:10:14 +0200 Subject: [PATCH 089/187] Link to previous directory --- lib/private/files.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/files.php b/lib/private/files.php index e6135c4329..152595ba69 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -231,7 +231,7 @@ class OC_Files { OC_Template::printErrorPage( $l->t('ZIP download is turned off.'), $l->t('Files need to be downloaded one by one.') - . '<br/><a href="'.OCP\Util::linkTo('files', '').'">' . $l->t('Back to Files') . '</a>' + . '<br/><a href="'.OCP\Util::linkTo('files', 'index.php', array('dir' => $dir)).'">' . $l->t('Back to Files') . '</a>' ); exit; } @@ -258,7 +258,7 @@ class OC_Files { OC_Template::printErrorPage( $l->t('Selected files too large to generate zip file.'), $l->t('Please download the files separately in smaller chunks or kindly ask your administrator.') - . '<br/><a href="'.OCP\Util::linkTo('files', '').'">' . $l->t('Back to Files') . '</a>' + . '<br/><a href="'.OCP\Util::linkTo('files', 'index.php', array('dir' => $dir)).'">' . $l->t('Back to Files') . '</a>' ); exit; } -- GitLab From 1d8eb4467710cf61503ec7e32e1f6c24a4479eb1 Mon Sep 17 00:00:00 2001 From: Stefan <mu.stefan@googlemail.com> Date: Wed, 16 Apr 2014 22:41:57 +0200 Subject: [PATCH 090/187] Fix javascript error in calendar app Fix owncloud/calendar#409 If you haven't allowed to share items per email the element "email" will never appear and you will get a null exception. License: WTFPL --- core/js/share.js | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 03202c1a61..2813570f71 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -331,25 +331,27 @@ OC.Share={ .append( insert ) .appendTo( ul ); }; - $('#email').autocomplete({ - minLength: 1, - source: function (search, response) { - $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWithEmail', search: search.term }, function(result) { - if (result.status == 'success' && result.data.length > 0) { - response(result.data); - } - }); - }, - select: function( event, item ) { - $('#email').val(item.item.email); - return false; - } - }) - .data("ui-autocomplete")._renderItem = function( ul, item ) { - return $( "<li>" ) - .append( "<a>" + item.displayname + "<br>" + item.email + "</a>" ) - .appendTo( ul ); - }; + if (link) { + $('#email').autocomplete({ + minLength: 1, + source: function (search, response) { + $.get(OC.filePath('core', 'ajax', 'share.php'), { fetch: 'getShareWithEmail', search: search.term }, function(result) { + if (result.status == 'success' && result.data.length > 0) { + response(result.data); + } + }); + }, + select: function( event, item ) { + $('#email').val(item.item.email); + return false; + } + }) + .data("ui-autocomplete")._renderItem = function( ul, item ) { + return $( "<li>" ) + .append( "<a>" + item.displayname + "<br>" + item.email + "</a>" ) + .appendTo( ul ); + }; + } } else { html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Resharing is not allowed')+'" style="width:90%;" disabled="disabled"/>'; -- GitLab From 4a541e38e0b67ab251dd40aa74eafd299e9cdcda Mon Sep 17 00:00:00 2001 From: cbojar <chris@cbojar.net> Date: Mon, 14 Apr 2014 22:44:24 -0400 Subject: [PATCH 091/187] Clean up js.js along suggestions from scrutinizer-ci, fixes #8204. Also used JSHint.com to find a few other issues. -Strict comparisons (===) -Fixed regex escaping errors -Refactored OC.buildQueryString to use jQuery.map -Missing semicolons -Braces around if block Left some of the mixed spaces/tabs as they are for alignment in comments. --- core/js/js.js | 46 ++++++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 26 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index f10c716309..4a51cfeac5 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1,7 +1,7 @@ /** * Disable console output unless DEBUG mode is enabled. * Add - * define('DEBUG', true); + * define('DEBUG', true); * To the end of config/config.php to enable debug mode. * The undefined checks fix the broken ie8 console */ @@ -27,9 +27,10 @@ if (oc_debug !== true || typeof console === "undefined" || typeof console.log == if (!window.console) { window.console = {}; } + var noOp = function() { }; var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert', 'time', 'timeEnd']; for (var i = 0; i < methods.length; i++) { - console[methods[i]] = function () { }; + console[methods[i]] = noOp; } } @@ -50,9 +51,9 @@ function initL10N(app) { t.cache[app] = []; } } - if (typeof t.plural_function[app] == 'undefined') { + if (typeof t.plural_function[app] === 'undefined') { t.plural_function[app] = function (n) { - var p = (n != 1) ? 1 : 0; + var p = (n !== 1) ? 1 : 0; return { 'nplural' : 2, 'plural' : p }; }; @@ -61,14 +62,16 @@ function initL10N(app) { * https://developer.berlios.de/projects/jsgettext/ * http://cvs.berlios.de/cgi-bin/viewcvs.cgi/jsgettext/jsgettext/lib/Gettext.js */ - var pf_re = new RegExp('^(\\s*nplurals\\s*=\\s*[0-9]+\\s*;\\s*plural\\s*=\\s*(?:\\s|[-\\?\\|&=!<>+*/%:;a-zA-Z0-9_\(\)])+)', 'm'); + var pf_re = new RegExp('^(\\s*nplurals\\s*=\\s*[0-9]+\\s*;\\s*plural\\s*=\\s*(?:\\s|[-\\?\\|&=!<>+*/%:;a-zA-Z0-9_\\(\\)])+)', 'm'); if (pf_re.test(t.plural_form)) { //ex english: "Plural-Forms: nplurals=2; plural=(n != 1);\n" //pf = "nplurals=2; plural=(n != 1);"; //ex russian: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10< =4 && (n%100<10 or n%100>=20) ? 1 : 2) //pf = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"; var pf = t.plural_form; - if (! /;\s*$/.test(pf)) pf = pf.concat(';'); + if (! /;\s*$/.test(pf)) { + pf = pf.concat(';'); + } /* We used to use eval, but it seems IE has issues with it. * We now use "new Function", though it carries a slightly * bigger performance hit. @@ -387,13 +390,13 @@ var OC={ parts = queryString.replace(/\+/g, '%20').split('&'); for (var i = 0; i < parts.length; i++){ // split on first equal sign - var part = parts[i] + var part = parts[i]; pos = part.indexOf('='); if (pos >= 0) { components = [ part.substr(0, pos), part.substr(pos + 1) - ] + ]; } else { // key only @@ -424,25 +427,16 @@ var OC={ * @return string containing a URL query (without question) mark */ buildQueryString: function(params) { - var s = ''; - var first = true; if (!params) { - return s; + return ''; } - for (var key in params) { - var value = params[key]; - if (first) { - first = false; - } - else { - s += '&'; - } - s += encodeURIComponent(key); + return $.map(params, function(value, key) { + var s = encodeURIComponent(key); if (value !== null && typeof(value) !== 'undefined') { s += '=' + encodeURIComponent(value); } - } - return s; + return s; + }).join('&'); }, /** @@ -461,11 +455,11 @@ var OC={ var props = {scriptName:'settings.php', cache:true}; $.extend(props, args); var settings = $('#appsettings'); - if(settings.length == 0) { + if(settings.length === 0) { throw { name: 'MissingDOMElement', message: 'There has be be an element with id "appsettings" for the popup to show.' }; } var popup = $('#appsettings_popup'); - if(popup.length == 0) { + if(popup.length === 0) { $('body').prepend('<div class="popup hidden" id="appsettings_popup"></div>'); popup = $('#appsettings_popup'); popup.addClass(settings.hasClass('topright') ? 'topright' : 'bottomleft'); @@ -524,7 +518,7 @@ var OC={ $menuEl.show(); OC._currentMenu = $menuEl; OC._currentMenuToggle = $toggle; - return false + return false; }); }, @@ -959,7 +953,7 @@ function initCore() { // user menu $('#settings #expand').keydown(function(event) { if (event.which === 13 || event.which === 32) { - $('#expand').click() + $('#expand').click(); } }); $('#settings #expand').click(function(event) { -- GitLab From a7d7ca2fb3cab08447161261c367065e2999a67e Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <thomas.mueller@tmit.eu> Date: Thu, 17 Apr 2014 01:56:06 -0400 Subject: [PATCH 092/187] [tx-robot] updated from transifex --- apps/files/l10n/tr.php | 2 +- core/l10n/af_ZA.php | 47 ++++++- core/l10n/tr.php | 2 +- l10n/af_ZA/core.po | 193 ++++++++++++++-------------- l10n/templates/core.pot | 18 +-- 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 +- l10n/tr/core.po | 22 ++-- l10n/tr/files.po | 9 +- 18 files changed, 180 insertions(+), 135 deletions(-) diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 87c664cc17..76fafc3265 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"Could not move %s - File with this name already exists" => "%s taşınamadı - Bu isimde dosya zaten var", +"Could not move %s - File with this name already exists" => "%s taşınamadı. Bu isimde dosya zaten var.", "Could not move %s" => "%s taşınamadı", "File name cannot be empty." => "Dosya adı boş olamaz.", "\"%s\" is an invalid file name." => "'%s' geçersiz bir dosya adı.", diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index 94df818420..a04cc40c7c 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -1,12 +1,55 @@ <?php $TRANSLATIONS = array( +"Sunday" => "Sondag", +"Monday" => "Mandag", +"Tuesday" => "Dinsdag", +"Wednesday" => "Woensdag", +"Thursday" => "Donderdag", +"Friday" => "Vrydag", +"Saturday" => "Saterdag", +"January" => "Januarie", +"February" => "Februarie", +"March" => "Maart", +"April" => "April", +"May" => "Mei", +"June" => "Junie", +"July" => "Julie", +"August" => "Augustus", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "Desember", "Settings" => "Instellings", -"_%n minute ago_::_%n minutes ago_" => array("",""), +"seconds ago" => "sekondes gelede", +"_%n minute ago_::_%n minutes ago_" => array("%n minute gelede","%n minute gelede"), "_%n hour ago_::_%n hours ago_" => array("",""), +"today" => "vandag", +"yesterday" => "gister", "_%n day ago_::_%n days ago_" => array("",""), +"last month" => "verlede maand", "_%n month ago_::_%n months ago_" => array("",""), +"months ago" => "maande gelede", +"last year" => "verlede jaar", +"years ago" => "jare gelede", +"Choose" => "Kies", +"Yes" => "Ja", +"No" => "Nee", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Very weak password" => "Baie swak wagwoord", +"Weak password" => "Swak wagwoord", +"Good password" => "Goeie wagwoord", +"Strong password" => "Sterk wagwoord", +"Shared" => "Gedeel", +"Share" => "Deel", +"Error" => "Fout", +"Shared with you and the group {group} by {owner}" => "Met jou en die groep {group} gedeel deur {owner}", +"Shared with you by {owner}" => "Met jou gedeel deur {owner}", "Password" => "Wagwoord", +"Email link to person" => "E-pos aan persoon", +"Send" => "Stuur", +"can edit" => "kan wysig", +"Sending ..." => "Stuur ...", +"Email sent" => "E-pos gestuur", "Use the following link to reset your password: {link}" => "Gebruik die volgende skakel om jou wagwoord te herstel: {link}", "You will receive a link to reset your password via Email." => "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel.", "Username" => "Gebruikersnaam", @@ -28,7 +71,7 @@ $TRANSLATIONS = array( "Database name" => "Databasis naam", "Finish setup" => "Maak opstelling klaar", "Log out" => "Teken uit", -"Lost your password?" => "Jou wagwoord verloor?", +"Lost your password?" => "Wagwoord verloor?", "remember" => "onthou", "Log in" => "Teken aan" ); diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 8f9c60c157..d3002f87bf 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -72,7 +72,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "İzinleri değiştirirken hata oluştu", "Shared with you and the group {group} by {owner}" => "{owner} tarafından sizinle ve {group} ile paylaştırılmış", "Shared with you by {owner}" => "{owner} tarafından sizinle paylaşıldı", -"Share with user or group …" => "Kullanıcı veya grup ile paylaş..", +"Share with user or group …" => "Kullanıcı veya grup ile paylaş...", "Share link" => "Paylaşma bağlantısı", "Password protect" => "Parola koruması", "Password" => "Parola", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 38344accb9..6c03061dbe 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# kalliet <kst@fam-tank.net>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 19:39+0000\n" +"Last-Translator: kalliet <kst@fam-tank.net>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,79 +61,79 @@ msgstr "" #: js/config.php:36 msgid "Sunday" -msgstr "" +msgstr "Sondag" #: js/config.php:37 msgid "Monday" -msgstr "" +msgstr "Mandag" #: js/config.php:38 msgid "Tuesday" -msgstr "" +msgstr "Dinsdag" #: js/config.php:39 msgid "Wednesday" -msgstr "" +msgstr "Woensdag" #: js/config.php:40 msgid "Thursday" -msgstr "" +msgstr "Donderdag" #: js/config.php:41 msgid "Friday" -msgstr "" +msgstr "Vrydag" #: js/config.php:42 msgid "Saturday" -msgstr "" +msgstr "Saterdag" #: js/config.php:47 msgid "January" -msgstr "" +msgstr "Januarie" #: js/config.php:48 msgid "February" -msgstr "" +msgstr "Februarie" #: js/config.php:49 msgid "March" -msgstr "" +msgstr "Maart" #: js/config.php:50 msgid "April" -msgstr "" +msgstr "April" #: js/config.php:51 msgid "May" -msgstr "" +msgstr "Mei" #: js/config.php:52 msgid "June" -msgstr "" +msgstr "Junie" #: js/config.php:53 msgid "July" -msgstr "" +msgstr "Julie" #: js/config.php:54 msgid "August" -msgstr "" +msgstr "Augustus" #: js/config.php:55 msgid "September" -msgstr "" +msgstr "September" #: js/config.php:56 msgid "October" -msgstr "" +msgstr "Oktober" #: js/config.php:57 msgid "November" -msgstr "" +msgstr "November" #: js/config.php:58 msgid "December" -msgstr "" +msgstr "Desember" #: js/js.js:479 msgid "Settings" @@ -142,137 +143,137 @@ msgstr "Instellings" msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1099 msgid "seconds ago" -msgstr "" +msgstr "sekondes gelede" -#: js/js.js:1125 +#: js/js.js:1100 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n minute gelede" +msgstr[1] "%n minute gelede" -#: js/js.js:1126 +#: js/js.js:1101 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1102 msgid "today" -msgstr "" +msgstr "vandag" -#: js/js.js:1128 +#: js/js.js:1103 msgid "yesterday" -msgstr "" +msgstr "gister" -#: js/js.js:1129 +#: js/js.js:1104 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1105 msgid "last month" -msgstr "" +msgstr "verlede maand" -#: js/js.js:1131 +#: js/js.js:1106 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 +#: js/js.js:1107 msgid "months ago" -msgstr "" +msgstr "maande gelede" -#: js/js.js:1133 +#: js/js.js:1108 msgid "last year" -msgstr "" +msgstr "verlede jaar" -#: js/js.js:1134 +#: js/js.js:1109 msgid "years ago" -msgstr "" +msgstr "jare gelede" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" -msgstr "" +msgstr "Kies" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" -msgstr "" +msgstr "Ja" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" -msgstr "" +msgstr "Nee" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Baie swak wagwoord" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Swak wagwoord" #: js/setup.js:86 msgid "So-so password" @@ -280,26 +281,26 @@ msgstr "" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Goeie wagwoord" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Sterk wagwoord" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Gedeel" #: js/share.js:109 msgid "Share" -msgstr "" +msgstr "Deel" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:732 #: templates/installation.php:10 msgid "Error" -msgstr "" +msgstr "Fout" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:788 msgid "Error while sharing" msgstr "" @@ -313,11 +314,11 @@ msgstr "" #: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Met jou en die groep {group} gedeel deur {owner}" #: js/share.js:190 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Met jou gedeel deur {owner}" #: js/share.js:214 msgid "Share with user or group …" @@ -341,11 +342,11 @@ msgstr "" #: js/share.js:234 msgid "Email link to person" -msgstr "" +msgstr "E-pos aan persoon" #: js/share.js:235 msgid "Send" -msgstr "" +msgstr "Stuur" #: js/share.js:240 msgid "Set expiration date" @@ -363,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:383 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:355 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:399 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:421 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:429 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:432 msgid "can edit" -msgstr "" +msgstr "kan wysig" -#: js/share.js:414 +#: js/share.js:434 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:437 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:440 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:443 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:446 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:719 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:732 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:750 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:775 msgid "Sending ..." -msgstr "" +msgstr "Stuur ..." -#: js/share.js:765 +#: js/share.js:786 msgid "Email sent" -msgstr "" +msgstr "E-pos gestuur" -#: js/share.js:789 +#: js/share.js:810 msgid "Warning" msgstr "" @@ -755,7 +756,7 @@ msgstr "" #: templates/login.php:46 msgid "Lost your password?" -msgstr "Jou wagwoord verloor?" +msgstr "Wagwoord verloor?" #: templates/login.php:51 msgid "remember" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 576591b9f8..b96a0995a2 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -295,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:732 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:788 msgid "Error while sharing" msgstr "" @@ -408,27 +408,27 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:719 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:732 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:750 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:775 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:786 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:810 msgid "Warning" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 85b4f6cff1..c3f090f147 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4ce00890ea..4ea46413f4 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 5df6d0e30e..d77884d671 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 5b5e49eb1b..a041a4ac2b 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 6f6738bd79..3f78afda2a 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 484ba898c0..0d7041f4bd 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 66aa4ece37..db37d225f9 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index bd9540914a..536c63ebce 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 4ac6477ef5..170f6cf074 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index f1b4e61a2a..1b92a29313 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index bf8580b5dc..e60c51e503 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: 2014-04-16 01:55-0400\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index eb7105868b..08945e6239 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 21:49+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -298,12 +298,12 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:732 #: templates/installation.php:10 msgid "Error" msgstr "Hata" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:788 msgid "Error while sharing" msgstr "Paylaşım sırasında hata" @@ -325,7 +325,7 @@ msgstr "{owner} tarafından sizinle paylaşıldı" #: js/share.js:214 msgid "Share with user or group …" -msgstr "Kullanıcı veya grup ile paylaş.." +msgstr "Kullanıcı veya grup ile paylaş..." #: js/share.js:220 msgid "Share link" @@ -411,27 +411,27 @@ msgstr "sil" msgid "share" msgstr "paylaş" -#: js/share.js:718 +#: js/share.js:719 msgid "Password protected" msgstr "Parola korumalı" -#: js/share.js:731 +#: js/share.js:732 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:749 +#: js/share.js:750 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:774 +#: js/share.js:775 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:785 +#: js/share.js:786 msgid "Email sent" msgstr "E-posta gönderildi" -#: js/share.js:809 +#: js/share.js:810 msgid "Warning" msgstr "Uyarı" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 3f8226df1d..b8465fffa9 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -4,6 +4,7 @@ # # Translators: # alicanbatur <alicanbatur@hotmail.com>, 2013 +# Emre Saracoglu <emresaracoglu@live.com>, 2014 # ismail yenigül <ismail.yenigul@surgate.com>, 2013 # tridinebandim, 2013 # volkangezer <volkangezer@gmail.com>, 2013-2014 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: volkangezer <volkangezer@gmail.com>\n" +"POT-Creation-Date: 2014-04-17 01:55-0400\n" +"PO-Revision-Date: 2014-04-16 06:30+0000\n" +"Last-Translator: Emre Saracoglu <emresaracoglu@live.com>\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" @@ -24,7 +25,7 @@ msgstr "" #: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s taşınamadı - Bu isimde dosya zaten var" +msgstr "%s taşınamadı. Bu isimde dosya zaten var." #: ajax/move.php:25 ajax/move.php:28 #, php-format -- GitLab From eecd4bd18e49ff7c3e93961574ed9b6f7adb3b1c Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Thu, 17 Apr 2014 10:40:19 +0200 Subject: [PATCH 093/187] Use JS as content-type due to mimesniffing --- settings/js/apps-custom.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/js/apps-custom.php b/settings/js/apps-custom.php index c25148cdde..2b2f256b39 100644 --- a/settings/js/apps-custom.php +++ b/settings/js/apps-custom.php @@ -9,8 +9,8 @@ // Check if admin user OC_Util::checkAdminUser(); -// Set the content type to JSON -header('Content-type: application/json'); +// Set the content type to JS +header('Content-type: application/javascript'); // Disallow caching header("Cache-Control: no-cache, must-revalidate"); -- GitLab From d82a31d121c452529d3f1f95ab87096b215d1275 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Thu, 17 Apr 2014 16:58:57 +0200 Subject: [PATCH 094/187] keep long file names in one line to not overflow download button on mobile --- apps/files_sharing/css/public.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 062444f496..d36683d42c 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -70,13 +70,26 @@ thead { margin: 0; } + .directDownload, .directLink { margin-bottom: 20px; } + +/* keep long file names in one line to not overflow download button on mobile */ +.directDownload #download { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + display: inline-block; + margin-left: auto; + margin-right: auto; +} .directDownload .button img { vertical-align: text-bottom; } + .directLink label { font-weight: normal; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; -- GitLab From f434c3a2131c1e6e93471ced5877f4ac86d78837 Mon Sep 17 00:00:00 2001 From: Volkan Gezer <volkangezer@gmail.com> Date: Thu, 17 Apr 2014 02:35:43 +0200 Subject: [PATCH 095/187] Fix localization issues of files_trashbin --- apps/files_trashbin/js/trash.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 5cd49e19aa..f7724d07d2 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -30,7 +30,7 @@ $(document).ready(function() { function removeCallback(result) { if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); + OC.dialogs.alert(result.data.message, t('files_trashbin', 'Error')); } var files = result.data.success; @@ -59,7 +59,7 @@ $(document).ready(function() { }, removeCallback ); - }); + }, t('files_trashbin', 'Restore')); }; FileActions.register('all', 'Delete', OC.PERMISSION_READ, function() { @@ -121,7 +121,7 @@ $(document).ready(function() { function(result) { if (allFiles) { if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); + OC.dialogs.alert(result.data.message, t('files_trashbin', 'Error')); } FileList.hideMask(); // simply remove all files @@ -170,7 +170,7 @@ $(document).ready(function() { function(result) { if (allFiles) { if (result.status !== 'success') { - OC.dialogs.alert(result.data.message, t('core', 'Error')); + OC.dialogs.alert(result.data.message, t('files_trashbin', 'Error')); } FileList.hideMask(); // simply remove all files -- GitLab From d23c4697d0e28de2a4aa4e9289dcf42f32854ece Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Fri, 18 Apr 2014 01:56:04 -0400 Subject: [PATCH 096/187] [tx-robot] updated from transifex --- l10n/templates/core.pot | 40 ++++++++++++++--------------- 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 | 4 +-- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 4 +-- l10n/templates/private.pot | 4 +-- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 12 files changed, 34 insertions(+), 34 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index b96a0995a2..d9de9627ce 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -295,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:732 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:788 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:719 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:732 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:750 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:775 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:786 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:810 +#: js/share.js:812 msgid "Warning" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index c3f090f147..0b9c7866e1 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4ea46413f4..8efc775c10 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index d77884d671..f371b14244 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index a041a4ac2b..e8ddbcf27b 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 3f78afda2a..9c0ffb57d4 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,7 +39,7 @@ msgstr "" msgid "Deleted Files" msgstr "" -#: lib/trashbin.php:859 lib/trashbin.php:861 +#: lib/trashbin.php:861 lib/trashbin.php:863 msgid "restored" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 0d7041f4bd..b8eb41dd0f 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index db37d225f9..212dceff91 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -49,7 +49,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 536c63ebce..cbb4ac0068 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -49,7 +49,7 @@ msgstr "" msgid "Admin" msgstr "" -#: app.php:875 +#: app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 170f6cf074..8b5f7995d0 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 1b92a29313..cb420d0147 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index e60c51e503..0d5fff3c0a 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: 2014-04-17 01:55-0400\n" +"POT-Creation-Date: 2014-04-18 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -- GitLab From b78c1373b681102f2904a4270c45b3030ffe22a5 Mon Sep 17 00:00:00 2001 From: LEDfan <tobia@ledfan.be> Date: Fri, 18 Apr 2014 14:30:44 +0200 Subject: [PATCH 097/187] Add key to every contact --- lib/private/contactsmanager.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/private/contactsmanager.php b/lib/private/contactsmanager.php index 1cb3da7098..47ade48dcf 100644 --- a/lib/private/contactsmanager.php +++ b/lib/private/contactsmanager.php @@ -37,7 +37,12 @@ namespace OC { $result = array(); foreach($this->address_books as $address_book) { $r = $address_book->search($pattern, $searchProperties, $options); - $result = array_merge($result, $r); + $contacts = array(); + foreach($r as $c){ + $c['key'] = $address_book->getKey(); + $contacts[] = $c; + } + $result = array_merge($result, $contacts); } return $result; -- GitLab From 1abd9c1305745fe4e66b8b4d0a45f56526dad216 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Sat, 19 Apr 2014 01:56:06 -0400 Subject: [PATCH 098/187] [tx-robot] updated from transifex --- apps/files_trashbin/l10n/ast.php | 5 ++ apps/files_versions/l10n/ast.php | 2 + core/l10n/gl.php | 2 +- core/l10n/tr.php | 46 +++++++-------- l10n/ast/files_trashbin.po | 19 ++++--- l10n/ast/files_versions.po | 11 ++-- l10n/gl/core.po | 44 +++++++-------- l10n/gl/lib.po | 36 ++++++------ 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 +- l10n/tr/core.po | 88 ++++++++++++++--------------- lib/l10n/gl.php | 2 +- 22 files changed, 144 insertions(+), 135 deletions(-) diff --git a/apps/files_trashbin/l10n/ast.php b/apps/files_trashbin/l10n/ast.php index 91c122bd4d..688e1ce3d8 100644 --- a/apps/files_trashbin/l10n/ast.php +++ b/apps/files_trashbin/l10n/ast.php @@ -1,8 +1,13 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "Nun pudo desaniciase %s dafechu", +"Couldn't restore %s" => "Nun pudo restaurase %s", "Error" => "Fallu", +"Deleted Files" => "Ficheros desaniciaos", +"Nothing in here. Your trash bin is empty!" => "Nun hai un res equí. La papelera ta balera!", "Name" => "Nome", "Restore" => "Restaurar", +"Deleted" => "Desaniciáu", "Delete" => "Desaniciar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/ast.php b/apps/files_versions/l10n/ast.php index 4869d70b54..31e6e72b2d 100644 --- a/apps/files_versions/l10n/ast.php +++ b/apps/files_versions/l10n/ast.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "Nun pudo revertise: %s", "Versions" => "Versiones", +"Failed to revert {file} to revision {timestamp}." => "Fallu al revertir {file} a la revisión {timestamp}.", "More versions..." => "Más versiones...", "No other versions available" => "Nun hai otres versiones disponibles", "Restore" => "Restaurar" diff --git a/core/l10n/gl.php b/core/l10n/gl.php index eb9f1af565..fac17a5c23 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -36,7 +36,7 @@ $TRANSLATIONS = array( "_%n hour ago_::_%n hours ago_" => array("hai %n hora","hai %n horas"), "today" => "hoxe", "yesterday" => "onte", -"_%n day ago_::_%n days ago_" => array("hai %n día","hai %n días"), +"_%n day ago_::_%n days ago_" => array("hai %n día","vai %n días"), "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "months ago" => "meses atrás", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index d3002f87bf..2b0d952a34 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -39,9 +39,9 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n gün önce","%n gün önce"), "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("%n ay önce","%n ay önce"), -"months ago" => "ay önce", +"months ago" => "aylar önce", "last year" => "geçen yıl", -"years ago" => "yıl önce", +"years ago" => "yıllar önce", "Choose" => "Seç", "Error loading file picker template: {error}" => "Dosya seçici şablonu yüklenirken hata: {error}", "Yes" => "Evet", @@ -69,19 +69,19 @@ $TRANSLATIONS = array( "Error" => "Hata", "Error while sharing" => "Paylaşım sırasında hata", "Error while unsharing" => "Paylaşım iptal edilirken hata", -"Error while changing permissions" => "İzinleri değiştirirken hata oluştu", +"Error while changing permissions" => "İzinleri değiştirirken hata", "Shared with you and the group {group} by {owner}" => "{owner} tarafından sizinle ve {group} ile paylaştırılmış", "Shared with you by {owner}" => "{owner} tarafından sizinle paylaşıldı", "Share with user or group …" => "Kullanıcı veya grup ile paylaş...", "Share link" => "Paylaşma bağlantısı", "Password protect" => "Parola koruması", "Password" => "Parola", -"Allow Public Upload" => "Genel Gönderime İzin Ver", +"Allow Public Upload" => "Herkes Tarafından Gönderime İzin Ver", "Email link to person" => "Bağlantıyı e-posta ile gönder", "Send" => "Gönder", "Set expiration date" => "Son kullanma tarihini ayarla", "Expiration date" => "Son kullanım tarihi", -"Share via email:" => "E-posta ile paylaş", +"Share via email:" => "E-posta ile paylaş:", "No people found" => "Kişi bulunamadı", "group" => "grup", "Resharing is not allowed" => "Tekrar paylaşmaya izin verilmiyor", @@ -95,8 +95,8 @@ $TRANSLATIONS = array( "delete" => "sil", "share" => "paylaş", "Password protected" => "Parola korumalı", -"Error unsetting expiration date" => "Geçerlilik tarihi tanımlama kaldırma hatası", -"Error setting expiration date" => "Geçerlilik tarihi tanımlama hatası", +"Error unsetting expiration date" => "Son kullanma tarihi kaldırma hatası", +"Error setting expiration date" => "Son kullanma tarihi ayarlama hatası", "Sending ..." => "Gönderiliyor...", "Email sent" => "E-posta gönderildi", "Warning" => "Uyarı", @@ -108,23 +108,23 @@ $TRANSLATIONS = array( "Error loading dialog template: {error}" => "İletişim şablonu yüklenirken hata: {error}", "No tags selected for deletion." => "Silmek için bir etiket seçilmedi.", "Please reload the page." => "Lütfen sayfayı yeniden yükleyin.", -"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", -"The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", +"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Güncelleme başarısız oldu. Lütfen bu hatayı <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud topluluğu</a>na bildirin.", +"The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. Şimdi ownCloud'a yönlendiriliyorsunuz.", "%s password reset" => "%s parola sıfırlama", -"A problem has occurred whilst sending the email, please contact your administrator." => "E-posta gönderilirken bir hata oluştu. Lütfen yönetinizle iletişime geçin.", +"A problem has occurred whilst sending the email, please contact your administrator." => "E-posta gönderilirken bir hata oluştu. Lütfen yöneticinizle iletişime geçin.", "Use the following link to reset your password: {link}" => "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {link}", -"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.<br> Eğer yine bulamazsanız sistem yöneticinize sorunuz.", +"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.<br>Eğer yine bulamazsanız sistem yöneticinize danışın.", "Request failed!<br>Did you make sure your email/username was right?" => "İstek başarısız!<br>E-posta ve/veya kullanıcı adınızın doğru olduğundan emin misiniz?", -"You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız.", +"You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için e-posta ile bir bağlantı alacaksınız.", "Username" => "Kullanıcı Adı", -"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını etkinleştirmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile irtibata geçiniz. Gerçekten devam etmek istiyor musunuz?", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını etkinleştirmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile iletişime geçin. Gerçekten devam etmek istiyor musunuz?", "Yes, I really want to reset my password now" => "Evet, gerçekten parolamı şimdi sıfırlamak istiyorum", "Reset" => "Sıfırla", "Your password was reset" => "Parolanız sıfırlandı", "To login page" => "Giriş sayfasına git", "New password" => "Yeni parola", "Reset password" => "Parolayı sıfırla", -"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X desteklenmemediğinden %s bu platformda düzgün çalışmayacak. Kendi riskinizle kullanın!", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X desteklenmiyor ve %s bu platformda düzgün çalışmayacak. Kendi riskinizle kullanın!", "For the best results, please consider using a GNU/Linux server instead." => "En iyi sonuçlar için GNU/Linux sunucusu kullanın.", "Personal" => "Kişisel", "Users" => "Kullanıcılar", @@ -135,25 +135,25 @@ $TRANSLATIONS = array( "Tag already exists" => "Etiket zaten mevcut", "Error deleting tag(s)" => "Etiket(ler) silinirken hata", "Error tagging" => "Etiketleme hatası", -"Error untagging" => "Etiket kaldırılırken hata", +"Error untagging" => "Etiket kaldırma hatası", "Error favoriting" => "Beğenilirken hata", "Error unfavoriting" => "Beğeniden kaldırılırken hata", -"Access forbidden" => "Erişim yasaklı", +"Access forbidden" => "Erişim yasak", "Cloud not found" => "Bulut bulunamadı", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyoruz.\nBuradan bakabilirsiniz: %s\n\n", "The share will expire on %s." => "Bu paylaşım %s tarihinde sona erecek.", -"Cheers!" => "Şerefe!", +"Cheers!" => "Hoşça kalın!", "Security Warning" => "Güvenlik Uyarısı", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "%s güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Güvenli rastgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleştirin.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Güvenli rastgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geçirebilir.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için İnternet'ten erişime açık.", "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "Sunucunuzu nasıl ayarlayacağınıza dair bilgi için, lütfen <a href=\"%s\" target=\"_blank\">belgelendirme sayfasını</a> ziyaret edin.", "Create an <strong>admin account</strong>" => "Bir <strong>yönetici hesabı</strong> oluşturun", "Storage & database" => "Depolama ve veritabanı", "Data folder" => "Veri klasörü", -"Configure the database" => "Veritabanını ayarla", +"Configure the database" => "Veritabanını yapılandır", "will be used" => "kullanılacak", "Database user" => "Veritabanı kullanıcı adı", "Database password" => "Veritabanı parolası", @@ -163,23 +163,23 @@ $TRANSLATIONS = array( "Finish setup" => "Kurulumu tamamla", "Finishing …" => "Tamamlanıyor ...", "This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Uygulama, doğru çalışabilmesi için JavaScript'in etkinleştirilmesini gerektiriyor. Lütfen <a href=\"http://enable-javascript.com/\" target=\"_blank\">JavaScript'i etkinleştirin</a> ve bu arayüzü yeniden yükleyin.", -"%s is available. Get more information on how to update." => "%s mevcut. Güncelleştirme hakkında daha fazla bilgi alın.", +"%s is available. Get more information on how to update." => "%s mevcut. Nasıl güncelleyeceğiniz hakkında daha fazla bilgi alın.", "Log out" => "Çıkış yap", "Automatic logon rejected!" => "Otomatik oturum açma reddedildi!", "If you did not change your password recently, your account may be compromised!" => "Yakın zamanda parolanızı değiştirmediyseniz hesabınız tehlikede olabilir!", "Please change your password to secure your account again." => "Hesabınızı tekrar güvene almak için lütfen parolanızı değiştirin.", "Server side authentication failed!" => "Sunucu taraflı yetkilendirme başarısız!", -"Please contact your administrator." => "Lütfen sistem yöneticisi ile iletişime geçin.", +"Please contact your administrator." => "Lütfen sistem yöneticiniz ile iletişime geçin.", "Lost your password?" => "Parolanızı mı unuttunuz?", "remember" => "hatırla", "Log in" => "Giriş yap", "Alternative Logins" => "Alternatif Girişler", -"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" => "Merhaba, <br><br> %s sizinle <strong>%s</strong> paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>", +"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" => "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>", "This ownCloud instance is currently in single user mode." => "Bu ownCloud örneği şu anda tek kullanıcı kipinde.", "This means only administrators can use the instance." => "Bu, örneği sadece yöneticiler kullanabilir demektir.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Eğer bu ileti görünmeye devam ederse veya beklenmedik şekilde ortaya çıkmışsa sistem yöneticinizle iletişime geçin.", "Thank you for your patience." => "Sabrınız için teşekkür ederiz.", -"Updating ownCloud to version %s, this may take a while." => "Owncloud %s sürümüne güncelleniyor. Biraz zaman alabilir.", +"Updating ownCloud to version %s, this may take a while." => "ownCloud %s sürümüne güncelleniyor. Biraz zaman alabilir.", "This ownCloud instance is currently being updated, which may take a while." => "Bu ownCloud örneği şu anda güncelleniyor, bu biraz zaman alabilir.", "Please reload this page after a short time to continue using ownCloud." => "ownCloud kullanmaya devam etmek için kısa bir süre sonra lütfen sayfayı yenileyin." ); diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index eb1ea8604a..69e0e804c2 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Iñigo Varela <ivarela@softastur.org>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" +"PO-Revision-Date: 2014-04-18 20:42+0000\n" +"Last-Translator: Iñigo Varela <ivarela@softastur.org>\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +21,12 @@ msgstr "" #: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Nun pudo desaniciase %s dafechu" #: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Nun pudo restaurase %s" #: js/filelist.js:3 msgid "Deleted files" @@ -37,15 +38,15 @@ msgstr "Fallu" #: js/trash.js:264 msgid "Deleted Files" -msgstr "" +msgstr "Ficheros desaniciaos" -#: lib/trashbin.php:859 lib/trashbin.php:861 +#: lib/trashbin.php:861 lib/trashbin.php:863 msgid "restored" msgstr "" #: templates/index.php:6 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Nun hai un res equí. La papelera ta balera!" #: templates/index.php:19 msgid "Name" @@ -57,7 +58,7 @@ msgstr "Restaurar" #: templates/index.php:30 msgid "Deleted" -msgstr "" +msgstr "Desaniciáu" #: templates/index.php:33 templates/index.php:34 msgid "Delete" diff --git a/l10n/ast/files_versions.po b/l10n/ast/files_versions.po index 2fdf419af5..7ed9097b99 100644 --- a/l10n/ast/files_versions.po +++ b/l10n/ast/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Iñigo Varela <ivarela@softastur.org>, 2014 # Tornes Llume <l.lumex03.tornes@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-08 21:40+0000\n" -"Last-Translator: Tornes Llume <l.lumex03.tornes@gmail.com>\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" +"PO-Revision-Date: 2014-04-18 20:40+0000\n" +"Last-Translator: Iñigo Varela <ivarela@softastur.org>\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Nun pudo revertise: %s" #: js/versions.js:39 msgid "Versions" @@ -29,7 +30,7 @@ msgstr "Versiones" #: js/versions.js:61 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Fallu al revertir {file} a la revisión {timestamp}." #: js/versions.js:88 msgid "More versions..." diff --git a/l10n/gl/core.po b/l10n/gl/core.po index c3754b7adb..75ebd80fdf 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" +"PO-Revision-Date: 2014-04-18 11:20+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -172,7 +172,7 @@ msgstr "onte" msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" -msgstr[1] "hai %n días" +msgstr[1] "vai %n días" #: js/js.js:1105 msgid "last month" @@ -296,12 +296,12 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -365,71 +365,71 @@ msgstr "Compartir por correo:" msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por correo" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pode editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eliminar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Correo enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aviso" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index c112809faa..85c9c04058 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 07:30+0000\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" +"PO-Revision-Date: 2014-04-18 11:20+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -50,7 +50,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "Administración" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." @@ -291,68 +291,68 @@ msgstr "%s compartiu «%s» con vostede" msgid "Could not find category \"%s\"" msgstr "Non foi posíbel atopar a categoría «%s»" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundos atrás" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoxe" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "onte" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "hai %n día" -msgstr[1] "hai %n días" +msgstr[1] "vai %n días" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "último mes" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "último ano" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anos atrás" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Só se permiten os seguintes caracteres no nome de usuario: «a-z», «A-Z», «0-9», e «_.@-»" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Este nome de usuario xa está a ser usado" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d9de9627ce..e3554a4c47 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 0b9c7866e1..03a8f46d18 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8efc775c10..2c41f8b80e 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f371b14244..8071b5ccf5 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e8ddbcf27b..8f4e5e9305 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 9c0ffb57d4..d2a1456e38 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b8eb41dd0f..cafe757699 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 212dceff91..277b489ea9 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index cbb4ac0068..34d5b451d8 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 8b5f7995d0..5f0cf8f9e3 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index cb420d0147..8b233aa2eb 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 0d5fff3c0a..36d1c1ee51 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: 2014-04-18 01:55-0400\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 08945e6239..5aaaf0fb8e 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-17 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 21:49+0000\n" +"POT-Creation-Date: 2014-04-19 01:55-0400\n" +"PO-Revision-Date: 2014-04-18 13:51+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -188,7 +188,7 @@ msgstr[1] "%n ay önce" #: js/js.js:1107 msgid "months ago" -msgstr "ay önce" +msgstr "aylar önce" #: js/js.js:1108 msgid "last year" @@ -196,7 +196,7 @@ msgstr "geçen yıl" #: js/js.js:1109 msgid "years ago" -msgstr "yıl önce" +msgstr "yıllar önce" #: js/oc-dialogs.js:125 msgid "Choose" @@ -298,12 +298,12 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:732 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Hata" -#: js/share.js:160 js/share.js:788 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Paylaşım sırasında hata" @@ -313,7 +313,7 @@ msgstr "Paylaşım iptal edilirken hata" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "İzinleri değiştirirken hata oluştu" +msgstr "İzinleri değiştirirken hata" #: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" @@ -341,7 +341,7 @@ msgstr "Parola" #: js/share.js:230 msgid "Allow Public Upload" -msgstr "Genel Gönderime İzin Ver" +msgstr "Herkes Tarafından Gönderime İzin Ver" #: js/share.js:234 msgid "Email link to person" @@ -361,77 +361,77 @@ msgstr "Son kullanım tarihi" #: js/share.js:277 msgid "Share via email:" -msgstr "E-posta ile paylaş" +msgstr "E-posta ile paylaş:" #: js/share.js:280 msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{item} içinde {user} ile paylaşılanlar" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "e-posta ile bildir" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "oluştur" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "güncelle" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "sil" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "paylaş" -#: js/share.js:719 +#: js/share.js:721 msgid "Password protected" msgstr "Parola korumalı" -#: js/share.js:732 +#: js/share.js:734 msgid "Error unsetting expiration date" -msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" +msgstr "Son kullanma tarihi kaldırma hatası" -#: js/share.js:750 +#: js/share.js:752 msgid "Error setting expiration date" -msgstr "Geçerlilik tarihi tanımlama hatası" +msgstr "Son kullanma tarihi ayarlama hatası" -#: js/share.js:775 +#: js/share.js:777 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:786 +#: js/share.js:788 msgid "Email sent" msgstr "E-posta gönderildi" -#: js/share.js:810 +#: js/share.js:812 msgid "Warning" msgstr "Uyarı" @@ -472,11 +472,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." +msgstr "Güncelleme başarısız oldu. Lütfen bu hatayı <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud topluluğu</a>na bildirin." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Güncelleme başarılı. ownCloud'a yönlendiriliyor." +msgstr "Güncelleme başarılı. Şimdi ownCloud'a yönlendiriliyorsunuz." #: lostpassword/controller.php:70 #, php-format @@ -487,7 +487,7 @@ msgstr "%s parola sıfırlama" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "E-posta gönderilirken bir hata oluştu. Lütfen yönetinizle iletişime geçin." +msgstr "E-posta gönderilirken bir hata oluştu. Lütfen yöneticinizle iletişime geçin." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -498,7 +498,7 @@ msgid "" "The link to reset your password has been sent to your email.<br>If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.<br>If it is not there ask your local administrator ." -msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.<br> Eğer yine bulamazsanız sistem yöneticinize sorunuz." +msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.<br>Eğer yine bulamazsanız sistem yöneticinize danışın." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!<br>Did you make sure your email/username was right?" @@ -506,7 +506,7 @@ msgstr "İstek başarısız!<br>E-posta ve/veya kullanıcı adınızın doğru o #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." -msgstr "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız." +msgstr "Parolanızı sıfırlamak için e-posta ile bir bağlantı alacaksınız." #: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 #: templates/login.php:32 @@ -519,7 +519,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını etkinleştirmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile irtibata geçiniz. Gerçekten devam etmek istiyor musunuz?" +msgstr "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını etkinleştirmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile iletişime geçin. Gerçekten devam etmek istiyor musunuz?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" @@ -550,7 +550,7 @@ msgstr "Parolayı sıfırla" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "Mac OS X desteklenmemediğinden %s bu platformda düzgün çalışmayacak. Kendi riskinizle kullanın!" +msgstr "Mac OS X desteklenmiyor ve %s bu platformda düzgün çalışmayacak. Kendi riskinizle kullanın!" #: setup/controller.php:144 msgid "" @@ -595,7 +595,7 @@ msgstr "Etiketleme hatası" #: tags/controller.php:86 msgid "Error untagging" -msgstr "Etiket kaldırılırken hata" +msgstr "Etiket kaldırma hatası" #: tags/controller.php:97 msgid "Error favoriting" @@ -607,7 +607,7 @@ msgstr "Beğeniden kaldırılırken hata" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Erişim yasaklı" +msgstr "Erişim yasak" #: templates/404.php:15 msgid "Cloud not found" @@ -630,7 +630,7 @@ msgstr "Bu paylaşım %s tarihinde sona erecek." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "Şerefe!" +msgstr "Hoşça kalın!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -662,7 +662,7 @@ msgstr "Güvenli rastgele sayı üreticisi olmadan saldırganlar parola sıfırl msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık." +msgstr "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için İnternet'ten erişime açık." #: templates/installation.php:42 #, php-format @@ -685,7 +685,7 @@ msgstr "Veri klasörü" #: templates/installation.php:90 msgid "Configure the database" -msgstr "Veritabanını ayarla" +msgstr "Veritabanını yapılandır" #: templates/installation.php:94 msgid "will be used" @@ -729,7 +729,7 @@ msgstr "Uygulama, doğru çalışabilmesi için JavaScript'in etkinleştirilmesi #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s mevcut. Güncelleştirme hakkında daha fazla bilgi alın." +msgstr "%s mevcut. Nasıl güncelleyeceğiniz hakkında daha fazla bilgi alın." #: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" @@ -755,7 +755,7 @@ msgstr "Sunucu taraflı yetkilendirme başarısız!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "Lütfen sistem yöneticisi ile iletişime geçin." +msgstr "Lütfen sistem yöneticiniz ile iletişime geçin." #: templates/login.php:46 msgid "Lost your password?" @@ -778,7 +778,7 @@ msgstr "Alternatif Girişler" msgid "" "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> " "with you.<br><a href=\"%s\">View it!</a><br><br>" -msgstr "Merhaba, <br><br> %s sizinle <strong>%s</strong> paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>" +msgstr "Merhaba, <br><br>%s kullanıcısının sizinle <strong>%s</strong> paylaşımında bulunduğunu bildirmek istedik.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." @@ -801,7 +801,7 @@ msgstr "Sabrınız için teşekkür ederiz." #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Owncloud %s sürümüne güncelleniyor. Biraz zaman alabilir." +msgstr "ownCloud %s sürümüne güncelleniyor. Biraz zaman alabilir." #: templates/update.user.php:3 msgid "" diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 0da1695e37..2a62b41e22 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -62,7 +62,7 @@ $TRANSLATIONS = array( "_%n hour ago_::_%n hours ago_" => array("hai %n hora","hai %n horas"), "today" => "hoxe", "yesterday" => "onte", -"_%n day go_::_%n days ago_" => array("hai %n día","hai %n días"), +"_%n day go_::_%n days ago_" => array("hai %n día","vai %n días"), "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "last year" => "último ano", -- GitLab From e930ce6436017ab0de83e7076e92a4254534b862 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Sun, 20 Apr 2014 00:55:01 +0200 Subject: [PATCH 099/187] Add type hinting --- lib/private/subadmin.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/private/subadmin.php b/lib/private/subadmin.php index 8cda7240ac..5b6072987a 100644 --- a/lib/private/subadmin.php +++ b/lib/private/subadmin.php @@ -32,8 +32,8 @@ class OC_SubAdmin{ /** * @brief add a SubAdmin - * @param $uid uid of the SubAdmin - * @param $gid gid of the group + * @param string $uid uid of the SubAdmin + * @param string $gid gid of the group * @return boolean */ public static function createSubAdmin($uid, $gid) { @@ -45,8 +45,8 @@ class OC_SubAdmin{ /** * @brief delete a SubAdmin - * @param $uid uid of the SubAdmin - * @param $gid gid of the group + * @param string $uid uid of the SubAdmin + * @param string $gid gid of the group * @return boolean */ public static function deleteSubAdmin($uid, $gid) { @@ -58,7 +58,7 @@ class OC_SubAdmin{ /** * @brief get groups of a SubAdmin - * @param $uid uid of the SubAdmin + * @param string $uid uid of the SubAdmin * @return array */ public static function getSubAdminsGroups($uid) { @@ -73,7 +73,7 @@ class OC_SubAdmin{ /** * @brief get SubAdmins of a group - * @param $gid gid of the group + * @param string $gid gid of the group * @return array */ public static function getGroupsSubAdmins($gid) { @@ -102,8 +102,8 @@ class OC_SubAdmin{ /** * @brief checks if a user is a SubAdmin of a group - * @param $uid uid of the subadmin - * @param $gid gid of the group + * @param string $uid uid of the subadmin + * @param string $gid gid of the group * @return bool */ public static function isSubAdminofGroup($uid, $gid) { @@ -118,7 +118,7 @@ class OC_SubAdmin{ /** * @brief checks if a user is a SubAdmin - * @param $uid uid of the subadmin + * @param string $uid uid of the subadmin * @return bool */ public static function isSubAdmin($uid) { @@ -138,8 +138,8 @@ class OC_SubAdmin{ /** * @brief checks if a user is a accessible by a subadmin - * @param $subadmin uid of the subadmin - * @param $user uid of the user + * @param string $subadmin uid of the subadmin + * @param string $user uid of the user * @return bool */ public static function isUserAccessible($subadmin, $user) { -- GitLab From 8fba61f8441e18ad20d88e7a3b3933175fbfc442 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Sun, 20 Apr 2014 01:56:03 -0400 Subject: [PATCH 100/187] [tx-robot] updated from transifex --- 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 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e3554a4c47..cb3a6ecc8f 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 03a8f46d18..c6127a633f 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 2c41f8b80e..69b7c2f0b2 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8071b5ccf5..f14f4084ca 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 8f4e5e9305..8e0200f568 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d2a1456e38..13179f519c 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index cafe757699..135bf6b440 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 277b489ea9..9a3b40326a 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 34d5b451d8..9ec818085f 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 5f0cf8f9e3..7783a9e2e7 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 8b233aa2eb..082a3130b5 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 36d1c1ee51..330a208b0a 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: 2014-04-19 01:55-0400\n" +"POT-Creation-Date: 2014-04-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" -- GitLab From 7e447f4f42de8dc0cf9a1f92c61a71dfda8f8dcd Mon Sep 17 00:00:00 2001 From: Bernhard Posselt <dev@bernhard-posselt.com> Date: Sun, 20 Apr 2014 16:12:46 +0200 Subject: [PATCH 101/187] make download and redirectresponse public --- .../appframework/middleware/security/securitymiddleware.php | 2 +- lib/{private => public}/appframework/http/downloadresponse.php | 2 +- lib/{private => public}/appframework/http/redirectresponse.php | 2 +- tests/lib/appframework/http/DownloadResponseTest.php | 2 +- tests/lib/appframework/http/RedirectResponseTest.php | 2 +- .../appframework/middleware/security/SecurityMiddlewareTest.php | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) rename lib/{private => public}/appframework/http/downloadresponse.php (97%) rename lib/{private => public}/appframework/http/redirectresponse.php (97%) diff --git a/lib/private/appframework/middleware/security/securitymiddleware.php b/lib/private/appframework/middleware/security/securitymiddleware.php index bb02d565fa..0f160d224a 100644 --- a/lib/private/appframework/middleware/security/securitymiddleware.php +++ b/lib/private/appframework/middleware/security/securitymiddleware.php @@ -25,8 +25,8 @@ namespace OC\AppFramework\Middleware\Security; use OC\AppFramework\Http; -use OC\AppFramework\Http\RedirectResponse; use OC\AppFramework\Utility\MethodAnnotationReader; +use OCP\AppFramework\Http\RedirectResponse; use OCP\AppFramework\Middleware; use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\JSONResponse; diff --git a/lib/private/appframework/http/downloadresponse.php b/lib/public/appframework/http/downloadresponse.php similarity index 97% rename from lib/private/appframework/http/downloadresponse.php rename to lib/public/appframework/http/downloadresponse.php index 67b9542dba..d3c2818e82 100644 --- a/lib/private/appframework/http/downloadresponse.php +++ b/lib/public/appframework/http/downloadresponse.php @@ -22,7 +22,7 @@ */ -namespace OC\AppFramework\Http; +namespace OCP\AppFramework\Http; /** diff --git a/lib/private/appframework/http/redirectresponse.php b/lib/public/appframework/http/redirectresponse.php similarity index 97% rename from lib/private/appframework/http/redirectresponse.php rename to lib/public/appframework/http/redirectresponse.php index 0535334906..416e153363 100644 --- a/lib/private/appframework/http/redirectresponse.php +++ b/lib/public/appframework/http/redirectresponse.php @@ -22,7 +22,7 @@ */ -namespace OC\AppFramework\Http; +namespace OCP\AppFramework\Http; use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http; diff --git a/tests/lib/appframework/http/DownloadResponseTest.php b/tests/lib/appframework/http/DownloadResponseTest.php index 64fe7992b6..b305c63ad4 100644 --- a/tests/lib/appframework/http/DownloadResponseTest.php +++ b/tests/lib/appframework/http/DownloadResponseTest.php @@ -22,7 +22,7 @@ */ -namespace OC\AppFramework\Http; +namespace OCP\AppFramework\Http; //require_once(__DIR__ . "/../classloader.php"); diff --git a/tests/lib/appframework/http/RedirectResponseTest.php b/tests/lib/appframework/http/RedirectResponseTest.php index f82d0c3a67..f62b420f4e 100644 --- a/tests/lib/appframework/http/RedirectResponseTest.php +++ b/tests/lib/appframework/http/RedirectResponseTest.php @@ -22,7 +22,7 @@ */ -namespace OC\AppFramework\Http; +namespace OCP\AppFramework\Http; use OCP\AppFramework\Http; diff --git a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php index 63c48a6282..19e8a68c38 100644 --- a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php +++ b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php @@ -26,7 +26,7 @@ namespace OC\AppFramework\Middleware\Security; use OC\AppFramework\Http; use OC\AppFramework\Http\Request; -use OC\AppFramework\Http\RedirectResponse; +use OCP\AppFramework\Http\RedirectResponse; use OCP\AppFramework\Http\JSONResponse; -- GitLab From 1aa7774178d5e6293faa63c572113fc36039f67e Mon Sep 17 00:00:00 2001 From: Volkan Gezer <volkangezer@gmail.com> Date: Mon, 21 Apr 2014 02:28:34 +0200 Subject: [PATCH 102/187] make max. text translatable --- apps/files/lib/helper.php | 2 +- apps/files/templates/index.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index f9515d6715..2e3741cbdc 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -11,7 +11,7 @@ class Helper $l = new \OC_L10N('files'); $maxUploadFilesize = \OCP\Util::maxUploadFilesize($dir, $storageInfo['free']); $maxHumanFilesize = \OCP\Util::humanFileSize($maxUploadFilesize); - $maxHumanFilesize = $l->t('Upload') . ' max. ' . $maxHumanFilesize; + $maxHumanFilesize = $l->t('Upload (max. %s)', array($maxHumanFilesize)); return array('uploadMaxFilesize' => $maxUploadFilesize, 'maxHumanFilesize' => $maxHumanFilesize, diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 95edd625cb..a8437835d9 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -19,7 +19,7 @@ </div> <?php endif;?> <div id="upload" class="button" - title="<?php p($l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize']) ?>"> + title="<?php p($l->t('Upload (max. %s)', array($_['uploadMaxHumanFilesize']))) ?>"> <?php if($_['uploadMaxFilesize'] >= 0):?> <input type="hidden" id="max_upload" name="MAX_FILE_SIZE" value="<?php p($_['uploadMaxFilesize']) ?>"> <?php endif;?> -- GitLab From 4fe5ca1908757781872133c7140f4c8848e94ac6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Mon, 21 Apr 2014 01:56:06 -0400 Subject: [PATCH 103/187] [tx-robot] updated from transifex --- apps/files/l10n/tr.php | 2 +- apps/files_external/l10n/sl.php | 5 ++ apps/user_ldap/l10n/ast.php | 36 ++++++++++++-- core/l10n/sl.php | 1 + l10n/ast/user_ldap.po | 75 +++++++++++++++-------------- l10n/sl/core.po | 46 +++++++++--------- l10n/sl/files_external.po | 26 +++++----- l10n/sl/lib.po | 42 ++++++++-------- 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 | 4 +- l10n/templates/private.pot | 4 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/files.po | 8 +-- l10n/tr/settings.po | 6 +-- lib/l10n/sl.php | 4 +- settings/l10n/tr.php | 2 +- 24 files changed, 160 insertions(+), 121 deletions(-) diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 76fafc3265..1f69dca628 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"Could not move %s - File with this name already exists" => "%s taşınamadı. Bu isimde dosya zaten var.", +"Could not move %s - File with this name already exists" => "%s taşınamadı. Bu isimde dosya zaten mevcut", "Could not move %s" => "%s taşınamadı", "File name cannot be empty." => "Dosya adı boş olamaz.", "\"%s\" is an invalid file name." => "'%s' geçersiz bir dosya adı.", diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index bb34494a5d..baab272d1d 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Vpisati je treba veljaven ključ programa in kodo za Dropbox", "Error configuring Google Drive storage" => "Napaka nastavljanja shrambe Google Drive", "Saved" => "Shranjeno", +"<b>Note:</b> " => "<b>Opomba:</b> ", +" and " => "in", +"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Opomba:</b> Podpora za naslove cURL v PHP ni omogočena, ali pa ni ustrezno nameščenih programov. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika.", +"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Opomba:</b> Podpora za protokol FTP v PHP ni omogočena, ali pa ni ustrezno nameščenih programov. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika.", +"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Opomba:</b> Program \"%s\" ni nameščen. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika.", "External Storage" => "Zunanja podatkovna shramba", "Folder name" => "Ime mape", "External storage" => "Zunanja shramba", diff --git a/apps/user_ldap/l10n/ast.php b/apps/user_ldap/l10n/ast.php index 2c02288001..032de8aedb 100644 --- a/apps/user_ldap/l10n/ast.php +++ b/apps/user_ldap/l10n/ast.php @@ -1,11 +1,41 @@ <?php $TRANSLATIONS = array( +"The configuration is invalid. Please have a look at the logs for further details." => "La configuración nun ye válida. Por favor, écha-y un güeyu a los rexistros pa más detalles.", +"No action specified" => "Nun s'especificó l'aición", +"No configuration specified" => "Nun s'especificó la configuración", +"No data specified" => "Nun s'especificaron los datos", +" Could not set configuration %s" => "Nun pudo afitase la configuración %s", "Deletion failed" => "Falló'l borráu", +"Keep settings?" => "¿Caltener los axustes?", +"Cannot add server configuration" => "Nun pue amestase la configuración del sirvidor", +"Success" => "Con ésitu", "Error" => "Fallu", -"_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("",""), +"Configuration incorrect" => "Configuración incorreuta", +"Configuration incomplete" => "Configuración incompleta", +"Select groups" => "Esbillar grupos", +"Select attributes" => "Esbillar atributos", +"_%s group found_::_%s groups found_" => array("%s grupu alcontráu","%s grupos alcontraos"), +"_%s user found_::_%s users found_" => array("%s usuariu alcontráu","%s usuarios alcontraos"), +"Could not find the desired feature" => "Nun pudo alcontrase la carauterística deseyada", "Save" => "Guardar", +"groups found" => "grupos alcontraos", +"Users login with this attribute:" => "Aniciu de sesión d'usuarios con esti atributu:", +"LDAP Username:" => "Nome d'usuariu LDAP", +"Other Attributes:" => "Otros atributos:", +"Add Server Configuration" => "Amestar configuración del sirvidor", +"Host" => "Equipu", +"Port" => "Puertu", "Password" => "Contraseña", -"Continue" => "Continuar" +"For anonymous access, leave DN and Password empty." => "Pa un accesu anónimu, dexar el DN y la contraseña baleros.", +"users found" => "usuarios alcontraos", +"Continue" => "Continuar", +"Connection Settings" => "Axustes de conexón", +"Configuration Active" => "Configuración activa", +"When unchecked, this configuration will be skipped." => "Cuando nun tea conseñáu, saltaráse esta configuración.", +"Disable Main Server" => "Deshabilitar sirvidor principal", +"Turn off SSL certificate validation." => "Apagar la validación del certificáu SSL.", +"Directory Settings" => "Axustes del direutoriu", +"in bytes" => "en bytes", +"Internal Username" => "Nome d'usuariu internu" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 7476d9f9c7..7da6a81086 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -51,6 +51,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} spor datotek","{count} spora datotek","{count} spori datotek","{count} sporov datotek"), "One file conflict" => "En spor datotek", "New Files" => "Nove datoteke", +"Already existing files" => "Obstoječe datoteke", "Which files do you want to keep?" => "Katare datoteke želite ohraniti?", "If you select both versions, the copied file will have a number added to its name." => "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka.", "Cancel" => "Prekliči", diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index 3c4a00ce67..734b55e218 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tornes Llume <l.lumex03.tornes@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" +"PO-Revision-Date: 2014-04-20 22:01+0000\n" +"Last-Translator: Tornes Llume <l.lumex03.tornes@gmail.com>\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,24 +40,24 @@ msgstr "" msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "La configuración nun ye válida. Por favor, écha-y un güeyu a los rexistros pa más detalles." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "Nun s'especificó l'aición" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "Nun s'especificó la configuración" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "Nun s'especificaron los datos" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "Nun pudo afitase la configuración %s" #: js/settings.js:67 msgid "Deletion failed" @@ -68,11 +69,11 @@ msgstr "" #: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "¿Caltener los axustes?" #: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "Nun pue amestase la configuración del sirvidor" #: js/settings.js:127 msgid "mappings cleared" @@ -80,7 +81,7 @@ msgstr "" #: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "Con ésitu" #: js/settings.js:133 msgid "Error" @@ -92,15 +93,15 @@ msgstr "" #: js/settings.js:847 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuración incorreuta" #: js/settings.js:856 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuración incompleta" #: js/settings.js:873 js/settings.js:882 msgid "Select groups" -msgstr "" +msgstr "Esbillar grupos" #: js/settings.js:876 js/settings.js:885 msgid "Select object classes" @@ -108,7 +109,7 @@ msgstr "" #: js/settings.js:879 msgid "Select attributes" -msgstr "" +msgstr "Esbillar atributos" #: js/settings.js:906 msgid "Connection test succeeded" @@ -130,15 +131,15 @@ msgstr "" #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s grupu alcontráu" +msgstr[1] "%s grupos alcontraos" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s usuariu alcontráu" +msgstr[1] "%s usuarios alcontraos" #: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" @@ -146,7 +147,7 @@ msgstr "" #: lib/wizard.php:983 msgid "Could not find the desired feature" -msgstr "" +msgstr "Nun pudo alcontrase la carauterística deseyada" #: templates/part.settingcontrols.php:2 msgid "Save" @@ -195,15 +196,15 @@ msgstr "" #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "grupos alcontraos" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Aniciu de sesión d'usuarios con esti atributu:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "Nome d'usuariu LDAP" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" @@ -211,7 +212,7 @@ msgstr "" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Otros atributos:" #: templates/part.wizard-loginfilter.php:38 #, php-format @@ -222,11 +223,11 @@ msgstr "" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "" +msgstr "Amestar configuración del sirvidor" #: templates/part.wizard-server.php:30 msgid "Host" -msgstr "" +msgstr "Equipu" #: templates/part.wizard-server.php:31 msgid "" @@ -235,7 +236,7 @@ msgstr "" #: templates/part.wizard-server.php:36 msgid "Port" -msgstr "" +msgstr "Puertu" #: templates/part.wizard-server.php:44 msgid "User DN" @@ -254,7 +255,7 @@ msgstr "Contraseña" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "Pa un accesu anónimu, dexar el DN y la contraseña baleros." #: templates/part.wizard-server.php:60 msgid "One Base DN per line" @@ -277,7 +278,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "usuarios alcontraos" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -302,15 +303,15 @@ msgstr "" #: templates/settings.php:20 msgid "Connection Settings" -msgstr "" +msgstr "Axustes de conexón" #: templates/settings.php:22 msgid "Configuration Active" -msgstr "" +msgstr "Configuración activa" #: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Cuando nun tea conseñáu, saltaráse esta configuración." #: templates/settings.php:23 msgid "Backup (Replica) Host" @@ -328,7 +329,7 @@ msgstr "" #: templates/settings.php:25 msgid "Disable Main Server" -msgstr "" +msgstr "Deshabilitar sirvidor principal" #: templates/settings.php:25 msgid "Only connect to the replica server." @@ -340,7 +341,7 @@ msgstr "" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Apagar la validación del certificáu SSL." #: templates/settings.php:27 #, php-format @@ -359,7 +360,7 @@ msgstr "" #: templates/settings.php:30 msgid "Directory Settings" -msgstr "" +msgstr "Axustes del direutoriu" #: templates/settings.php:32 msgid "User Display Name Field" @@ -444,7 +445,7 @@ msgstr "" #: templates/settings.php:45 msgid "in bytes" -msgstr "" +msgstr "en bytes" #: templates/settings.php:46 msgid "Email Field" @@ -462,7 +463,7 @@ msgstr "" #: templates/settings.php:53 msgid "Internal Username" -msgstr "" +msgstr "Nome d'usuariu internu" #: templates/settings.php:54 msgid "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index f867acbd3d..9be90e0fbf 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" +"PO-Revision-Date: 2014-04-20 20:53+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -246,7 +246,7 @@ msgstr "Nove datoteke" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Obstoječe datoteke" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" @@ -306,12 +306,12 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Napaka" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -375,71 +375,71 @@ msgstr "Pošlji povezavo do dokumenta preko elektronske pošte:" msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "skupina" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z uporabnikom {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "obvesti po elektronski pošti" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "ustvari" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "posodobi" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "izbriše" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "določi souporabo" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Napaka nastavljanja datuma preteka" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Elektronska pošta je poslana" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Opozorilo" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 46ee2ccbc1..e50f93e901 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" +"PO-Revision-Date: 2014-04-20 20:58+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,34 +42,34 @@ msgstr "Napaka nastavljanja shrambe Google Drive" msgid "Saved" msgstr "Shranjeno" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " -msgstr "" +msgstr "<b>Opomba:</b> " -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "in" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Opomba:</b> Podpora za naslove cURL v PHP ni omogočena, ali pa ni ustrezno nameščenih programov. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Opomba:</b> Podpora za protokol FTP v PHP ni omogočena, ali pa ni ustrezno nameščenih programov. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "<b>Opomba:</b> Program \"%s\" ni nameščen. Priklapljanje %s ni mogoče. Za pomoč pri namestitvi se obrnite na sistemskega skrbnika." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 6593ed803c..9693bf3642 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" +"PO-Revision-Date: 2014-04-20 20:59+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +50,7 @@ msgstr "Uporabniki" msgid "Admin" msgstr "Skrbništvo" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Posodabljanje \"%s\" je spodletelo." @@ -75,7 +75,7 @@ msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamično." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Nazaj na datoteke" @@ -291,11 +291,11 @@ msgstr "%s je omogočil souporabo »%s«" msgid "Could not find category \"%s\"" msgstr "Kategorije \"%s\" ni mogoče najti." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -303,7 +303,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -311,15 +311,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "danes" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "včeraj" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -327,11 +327,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "zadnji mesec" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -339,28 +339,28 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "lansko leto" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "let nazaj" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "V uporabniškem imenu je dovoljeno uporabiti le znake: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" -msgstr "" +msgstr "Vpisano uporabniško ime je že v uporabi" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index cb3a6ecc8f..39ea1ec329 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index c6127a633f..27022f2c79 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 69b7c2f0b2..b4d444deba 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f14f4084ca..6307ddbdad 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 8e0200f568..1bbd741991 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 13179f519c..1372eebdb1 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 135bf6b440..1306b57e85 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 9a3b40326a..865c7b594c 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,7 +74,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 9ec818085f..e180700c12 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,7 +74,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:234 files.php:262 +#: files.php:234 files.php:261 msgid "Back to Files" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 7783a9e2e7..a9d7325486 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 082a3130b5..53f6270a73 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 330a208b0a..d7194035f6 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: 2014-04-20 01:55-0400\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index b8465fffa9..ea746fec10 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-17 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 06:30+0000\n" -"Last-Translator: Emre Saracoglu <emresaracoglu@live.com>\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" +"PO-Revision-Date: 2014-04-20 13:10+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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" @@ -25,7 +25,7 @@ msgstr "" #: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s taşınamadı. Bu isimde dosya zaten var." +msgstr "%s taşınamadı. Bu isimde dosya zaten mevcut" #: ajax/move.php:25 ajax/move.php:28 #, php-format diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index deb25c1af2..768e0b1b45 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-21 01:55-0400\n" +"PO-Revision-Date: 2014-04-21 00:50+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,7 @@ msgstr "Eğer bu e-postayı aldıysanız, ayarlar doğru gibi görünüyor." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "E-posta gönderilirken bir hata oluştu. Lütfen ayarlarınızı tekrar ziyaret edin." +msgstr "E-posta gönderilirken bir hata oluştu. Lütfen ayarlarınıza tekrar bakın." #: admin/controller.php:99 msgid "Email sent" diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 6f9470401e..86172b5ab7 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -67,7 +67,9 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), "last year" => "lansko leto", "years ago" => "let nazaj", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "V uporabniškem imenu je dovoljeno uporabiti le znake: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"", "A valid username must be provided" => "Navedeno mora biti veljavno uporabniško ime", -"A valid password must be provided" => "Navedeno mora biti veljavno geslo" +"A valid password must be provided" => "Navedeno mora biti veljavno geslo", +"The username is already being used" => "Vpisano uporabniško ime je že v uporabi" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index fa163ed137..4fdd08b2c4 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -4,7 +4,7 @@ $TRANSLATIONS = array( "Saved" => "Kaydedildi", "test email settings" => "e-posta ayarlarını sına", "If you received this email, the settings seem to be correct." => "Eğer bu e-postayı aldıysanız, ayarlar doğru gibi görünüyor.", -"A problem occurred while sending the e-mail. Please revisit your settings." => "E-posta gönderilirken bir hata oluştu. Lütfen ayarlarınızı tekrar ziyaret edin.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "E-posta gönderilirken bir hata oluştu. Lütfen ayarlarınıza tekrar bakın.", "Email sent" => "E-posta gönderildi", "You need to set your user email before being able to send test emails." => "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor.", "Send mode" => "Gönderme kipi", -- GitLab From 539cecbd63571720b0adecb9a7742ed2dd45af1f Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Mon, 21 Apr 2014 13:46:33 +0200 Subject: [PATCH 104/187] Use proper JSDoc documentation --- core/js/js.js | 317 ++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 231 insertions(+), 86 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index f10c716309..ffe3dff249 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -84,11 +84,11 @@ function initL10N(app) { } /** * translate a string - * @param app the id of the app for which to translate the string - * @param text the string to translate - * @param vars (optional) FIXME - * @param count (optional) number to replace %n with - * @return string + * @param {string} app the id of the app for which to translate the string + * @param {string} text the string to translate + * @param [vars] FIXME + * @param {number} [count] number to replace %n with + * @return {string} */ function t(app, text, vars, count){ initL10N(app); @@ -119,12 +119,12 @@ t.plural_function = {}; /** * translate a string - * @param app the id of the app for which to translate the string - * @param text_singular the string to translate for exactly one object - * @param text_plural the string to translate for n objects - * @param count number to determine whether to use singular or plural - * @param vars (optional) FIXME - * @return string + * @param {string} app the id of the app for which to translate the string + * @param {string} text_singular the string to translate for exactly one object + * @param {string} text_plural the string to translate for n objects + * @param {number} count number to determine whether to use singular or plural + * @param [vars] FIXME + * @return {string} Translated string */ function n(app, text_singular, text_plural, count, vars) { initL10N(app); @@ -146,9 +146,9 @@ function n(app, text_singular, text_plural, count, vars) { } /** -* Sanitizes a HTML string -* @param s string -* @return Sanitized string +* Sanitizes a HTML string by replacing all potential dangerous characters with HTML entities +* @param {string} String to sanitize +* @return {string} Sanitized string */ function escapeHTML(s) { return s.toString().split('&').join('&').split('<').join('<').split('"').join('"'); @@ -156,9 +156,9 @@ function escapeHTML(s) { /** * Get the path to download a file -* @param file The filename -* @param dir The directory the file is in - e.g. $('#dir').val() -* @return string +* @param {string} file The filename +* @param {string} dir The directory the file is in - e.g. $('#dir').val() +* @return {string} Path to download the file * @deprecated use Files.getDownloadURL() instead */ function fileDownloadPath(dir, file) { @@ -176,32 +176,40 @@ var OC={ appswebroots:(typeof oc_appswebroots !== 'undefined') ? oc_appswebroots:false, currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false, coreApps:['', 'admin','log','search','settings','core','3rdparty'], + /** - * get an absolute url to a file in an appen - * @param app the id of the app the file belongs to - * @param file the file path relative to the app folder - * @return string + * Get an absolute url to a file in an app + * @param {string} app the id of the app the file belongs to + * @param {string} file the file path relative to the app folder + * @return {string} Absolute URL to a file */ linkTo:function(app,file){ return OC.filePath(app,'',file); }, + /** - * Creates an url for remote use - * @param string $service id - * @return string the url - * - * Returns a url to the given service. + * Creates a relative url for remote use + * @param {string} service id + * @return {string} the url */ linkToRemoteBase:function(service) { return OC.webroot + '/remote.php/' + service; }, + /** + * @brief Creates an absolute url for remote use + * @param {string} service id + * @return {string} the url + */ + linkToRemote:function(service) { + return window.location.protocol + '//' + window.location.host + OC.linkToRemoteBase(service); + }, + /** * Generates the absolute url for the given relative url, which can contain parameters. - * - * @returns {string} - * @param {string} url + * @param {string} URL * @param params + * @return {string} Absolute URL for the given relative URL */ generateUrl: function(url, params) { var _build = function (text, vars) { @@ -220,22 +228,11 @@ var OC={ }, /** - * @brief Creates an absolute url for remote use - * @param string $service id - * @param bool $add_slash - * @return string the url - * - * Returns a absolute url to the given service. - */ - linkToRemote:function(service) { - return window.location.protocol + '//' + window.location.host + OC.linkToRemoteBase(service); - }, - /** - * get the absolute url for a file in an app - * @param app the id of the app - * @param type the type of the file to link to (e.g. css,img,ajax.template) - * @param file the filename - * @return string + * Get the absolute url for a file in an app + * @param {string} app the id of the app + * @param {string} type the type of the file to link to (e.g. css,img,ajax.template) + * @param {string} file the filename + * @return {string} Absolute URL for a file in an app */ filePath:function(app,type,file){ var isCore=OC.coreApps.indexOf(app)!==-1, @@ -279,19 +276,22 @@ var OC={ } return link; }, + /** * Redirect to the target URL, can also be used for downloads. + * @param {string} targetURL URL to redirect to */ redirect: function(targetUrl) { window.location = targetUrl; }, + /** * get the absolute path to an image file - * @param app the app id to which the image belongs - * @param file the name of the image file - * @return string - * - * if no extension is given for the image, it will automatically decide between .png and .svg based on what the browser supports + * if no extension is given for the image, it will automatically decide + * between .png and .svg based on what the browser supports + * @param {string} app the app id to which the image belongs + * @param {string} file the name of the image file + * @return {string} */ imagePath:function(app,file){ if(file.indexOf('.')==-1){//if no extension is given, use png or svg depending on browser support @@ -299,13 +299,13 @@ var OC={ } return OC.filePath(app,'img',file); }, + /** - * load a script for the server and load it - * @param app the app id to which the script belongs - * @param script the filename of the script + * Load a script for the server and load it. If the script is already loaded, + * the event handeler will be called directly + * @param {string} app the app id to which the script belongs + * @param {string} script the filename of the script * @param ready event handeler to be called when the script is loaded - * - * if the script is already loaded, the event handeler will be called directly */ addScript:function(app,script,ready){ var deferred, path=OC.filePath(app,'js',script+'.js'); @@ -324,9 +324,9 @@ var OC={ return OC.addScript.loaded[path]; }, /** - * load a css file and load it - * @param app the app id to which the css style belongs - * @param style the filename of the css file + * Loads a CSS file + * @param {string} app the app id to which the css style belongs + * @param {string} style the filename of the css file */ addStyle:function(app,style){ var path=OC.filePath(app,'css',style+'.css'); @@ -340,15 +340,24 @@ var OC={ } } }, + + /** + * @todo Write the documentation + */ basename: function(path) { return path.replace(/\\/g,'/').replace( /.*\//, '' ); }, + + /** + * @todo Write the documentation + */ dirname: function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); }, + /** - * do a search query and display the results - * @param query the search query + * Do a search query and display the results + * @param {string} query the search query */ search:function(query){ if(query){ @@ -365,9 +374,10 @@ var OC={ var date = new Date(1000*mtime); return date.getDate()+'.'+(date.getMonth()+1)+'.'+date.getFullYear()+', '+date.getHours()+':'+date.getMinutes(); }, + /** * Parses a URL query string into a JS map - * @param queryString query string in the format param1=1234¶m2=abcde¶m3=xyz + * @param {string} queryString query string in the format param1=1234¶m2=abcde¶m3=xyz * @return map containing key/values matching the URL parameters */ parseQueryString:function(queryString){ @@ -421,7 +431,7 @@ var OC={ /** * Builds a URL query from a JS map. * @param params parameter map - * @return string containing a URL query (without question) mark + * @return {string} String containing a URL query (without question) mark */ buildQueryString: function(params) { var s = ''; @@ -447,11 +457,11 @@ var OC={ /** * Opens a popup with the setting for an app. - * @param appid String. The ID of the app e.g. 'calendar', 'contacts' or 'files'. - * @param loadJS boolean or String. If true 'js/settings.js' is loaded. If it's a string + * @param {string} appid The ID of the app e.g. 'calendar', 'contacts' or 'files'. + * @param {boolean|string} loadJS If true 'js/settings.js' is loaded. If it's a string * it will attempt to load a script by that name in the 'js' directory. - * @param cache boolean. If true the javascript file won't be forced refreshed. Defaults to true. - * @param scriptName String. The name of the PHP file to load. Defaults to 'settings.php' in + * @param {boolean} [cache] If true the javascript file won't be forced refreshed. Defaults to true. + * @param {string} [scriptName] The name of the PHP file to load. Defaults to 'settings.php' in * the root of the app directory hierarchy. */ appSettings:function(args) { @@ -505,7 +515,10 @@ var OC={ } }, - // for menu toggling + /** + * For menu toggeling + * @todo Write documentation + */ registerMenu: function($toggle, $menuEl) { $menuEl.addClass('menu'); $toggle.addClass('menutoggle'); @@ -528,6 +541,9 @@ var OC={ }); }, + /** + * @todo Write documentation + */ unregisterMenu: function($toggle, $menuEl) { // close menu if opened if ($menuEl.is(OC._currentMenu)) { @@ -544,6 +560,7 @@ var OC={ * * This is makes it possible for unit tests to * stub matchMedia (which doesn't work in PhantomJS) + * @todo Write documentation */ _matchMedia: function(media) { if (window.matchMedia) { @@ -552,6 +569,7 @@ var OC={ return false; } }; + OC.search.customResults={}; OC.search.currentResult=-1; OC.search.lastQuery=''; @@ -559,13 +577,32 @@ OC.search.lastResults={}; OC.addStyle.loaded=[]; OC.addScript.loaded=[]; +/** + * @todo Write documentation + */ OC.msg={ + /** + * @param selector + * @todo Write documentation + */ startSaving:function(selector){ OC.msg.startAction(selector, t('core', 'Saving...')); }, + + /** + * @param selector + * @param data + * @todo Write documentation + */ finishedSaving:function(selector, data){ OC.msg.finishedAction(selector, data); }, + + /** + * @param selector + * @param {string} message Message to display + * @todo WRite documentation + */ startAction:function(selector, message){ $(selector) .html( message ) @@ -574,6 +611,12 @@ OC.msg={ .stop(true, true) .show(); }, + + /** + * @param selector + * @param data + * @todo Write documentation + */ finishedAction:function(selector, data){ if( data.status === "success" ){ $(selector).html( data.data.message ) @@ -587,12 +630,26 @@ OC.msg={ } }; +/** + * @todo Write documentation + */ OC.Notification={ queuedNotifications: [], getDefaultNotificationFunction: null, + + /** + * @param callback + * @todo Write documentation + */ setDefault: function(callback) { OC.Notification.getDefaultNotificationFunction = callback; }, + + /** + * Hides a notification + * @param callback + * @todo Write documentation + */ hide: function(callback) { $('#notification').fadeOut('400', function(){ if (OC.Notification.isHidden()) { @@ -610,6 +667,13 @@ OC.Notification={ } }); }, + + /** + * Shows a notification as HTML without being sanitized before. + * If you pass unsanitized userinput this may lead to a XSS vulnerability. + * Consider using show() instead of showHTML() + * @param {string} html Message to display + */ showHtml: function(html) { if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){ $('#notification').html(html); @@ -618,6 +682,11 @@ OC.Notification={ OC.Notification.queuedNotifications.push(html); } }, + + /** + * Shows a sanitized notification + * @param {string} text Message to display + */ show: function(text) { if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){ $('#notification').text(text); @@ -626,13 +695,27 @@ OC.Notification={ OC.Notification.queuedNotifications.push($('<div/>').text(text).html()); } }, + + /** + * Returns whether a notification is hidden. + * @return {boolean} + */ isHidden: function() { return ($("#notification").text() === ''); } }; +/** + * @todo Write documentation + */ OC.Breadcrumb={ container:null, + /** + * @todo Write documentation + * @param dir + * @param leafname + * @param leaflink + */ show:function(dir, leafname, leaflink){ if(!this.container){//default this.container=$('#controls'); @@ -678,6 +761,12 @@ OC.Breadcrumb={ this._push(container, leafname, leaflink); } }, + + /** + * @todo Write documentation + * @param {string} name + * @param {string} link + */ push:function(name, link){ if(!this.container){//default this.container=$('#controls'); @@ -702,6 +791,10 @@ OC.Breadcrumb={ } return crumb; }, + + /** + * @todo Write documentation + */ pop:function(){ if(!this.container){//default this.container=$('#controls'); @@ -709,6 +802,10 @@ OC.Breadcrumb={ this.container.find('div.crumb').last().remove(); this.container.find('div.crumb').last().addClass('last'); }, + + /** + * @todo Write documentation + */ clear:function(){ if(!this.container){//default this.container=$('#controls'); @@ -721,21 +818,47 @@ OC.Breadcrumb={ }; if(typeof localStorage !=='undefined' && localStorage !== null){ - //user and instance aware localstorage + /** + * User and instance aware localstorage + */ OC.localStorage={ namespace:'oc_'+OC.currentUser+'_'+OC.webroot+'_', + + /** + * Whether the storage contains items + * @param {string} name + * @return {boolean} + */ hasItem:function(name){ return OC.localStorage.getItem(name)!==null; }, + + /** + * Add an item to the storage + * @param {string} name + * @param {string} item + */ setItem:function(name,item){ return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item)); }, + + /** + * Removes an item from the storage + * @param {string} name + * @param {string} item + */ removeItem:function(name,item){ return localStorage.removeItem(OC.localStorage.namespace+name); }, + + /** + * Get an item from the storage + * @param {string} name + * @return {null|string} + */ getItem:function(name){ var item = localStorage.getItem(OC.localStorage.namespace+name); - if(item===null) { + if(item === null) { return null; } else if (typeof JSON === 'undefined') { //fallback to jquery for IE6/7/8 @@ -762,6 +885,7 @@ if(typeof localStorage !=='undefined' && localStorage !== null){ /** * check if the browser support svg images + * @return {boolean} */ function SVGSupport() { return SVGSupport.checkMimeType.correct && !!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', "svg").createSVGRect; @@ -793,15 +917,18 @@ SVGSupport.checkMimeType=function(){ }; SVGSupport.checkMimeType.correct=true; -// replace all svg images with png for browser compatibility -// @deprecated use OC.Util.replaceSVG instead +/** + * Replace all svg images with png for browser compatibility + * @param $el + * @deprecated use OC.Util.replaceSVG instead + */ function replaceSVG($el){ return OC.Util.replaceSVG($el); } /** * prototypal inharitence functions - * + * @todo Write documentation * usage: * MySubObject=object(MyObject) */ @@ -813,6 +940,7 @@ function object(o) { /** * Fills height of window. (more precise than height: 100%;) + * @param selector */ function fillHeight(selector) { if (selector.length === 0) { @@ -828,6 +956,7 @@ function fillHeight(selector) { /** * Fills height and width of window. (more precise than height: 100%; or width: 100%;) + * @param selector */ function fillWindow(selector) { if (selector.length === 0) { @@ -1055,6 +1184,11 @@ $.fn.filterAttr = function(attr_name, attr_value) { return this.filter(function() { return $(this).attr(attr_name) === attr_value; }); }; +/** + * Returns a human readable filesize + * @param {number} Size in bytes + * @return {string} + */ function humanFileSize(size) { var humanList = ['B', 'kB', 'MB', 'GB', 'TB']; // Calculate Log with base 1024: size = 1024 ** order @@ -1072,6 +1206,11 @@ function humanFileSize(size) { return relativeSize + ' ' + readableFormat; } +/** + * Format an UNIX timestamp to a human understandable format + * @param {number} date UNIX timestamp + * @return {string} Human readable format + */ function formatDate(date){ if(typeof date=='number'){ date=new Date(date); @@ -1079,7 +1218,13 @@ function formatDate(date){ return $.datepicker.formatDate(datepickerFormatDate, date)+' '+date.getHours()+':'+((date.getMinutes()<10)?'0':'')+date.getMinutes(); } -// taken from http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery +// +/** + * Get the value of a URL parameter + * @link http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery + * @param {string} name URL parameter + * @return {string} + */ function getURLParameter(name) { return decodeURI( (RegExp(name + '=' + '(.+?)(&|$)').exec(location.search) || [, null])[1] @@ -1087,8 +1232,8 @@ function getURLParameter(name) { } /** - * takes an absolute timestamp and return a string with a human-friendly relative date - * @param int a Unix timestamp + * Takes an absolute timestamp and return a string with a human-friendly relative date + * @param {number} A Unix timestamp */ function relative_modified_date(timestamp) { var timediff = Math.round((new Date()).getTime() / 1000) - timestamp; @@ -1109,11 +1254,13 @@ function relative_modified_date(timestamp) { else { return t('core','years ago'); } } +/** + * @todo Write documentation + */ OC.Util = { /** * Returns whether the browser supports SVG - * - * @return true if the browser supports SVG, false otherwise + * @return {boolean} true if the browser supports SVG, false otherwise */ // TODO: replace with original function hasSVGSupport: SVGSupport, @@ -1121,10 +1268,8 @@ OC.Util = { * If SVG is not supported, replaces the given icon's extension * from ".svg" to ".png". * If SVG is supported, return the image path as is. - * - * @param file image path with svg extension - * @return fixed image path with png extension if SVG is not - * supported + * @param {string} file image path with svg extension + * @return {string} fixed image path with png extension if SVG is not supported */ replaceSVGIcon: function(file) { if (!OC.Util.hasSVGSupport()) { @@ -1176,8 +1321,9 @@ OC.Util = { }; /** - * get a variable by name - * @param string name + * Get a variable by name + * @param {string} name + * @return {*} */ OC.get=function(name) { var namespaces = name.split("."); @@ -1194,8 +1340,8 @@ OC.get=function(name) { }; /** - * set a variable by name - * @param string name + * Set a variable by name + * @param {string} name * @param mixed value */ OC.set=function(name, value) { @@ -1252,4 +1398,3 @@ jQuery.fn.selectRange = function(start, end) { jQuery.fn.exists = function(){ return this.length > 0; }; - -- GitLab From 8fcffae1e2448cfa04297aa028801db5a00e6073 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Mon, 21 Apr 2014 14:28:54 +0200 Subject: [PATCH 105/187] Reuse selector --- core/js/js.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index ffe3dff249..ff6538f982 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -397,7 +397,7 @@ var OC={ parts = queryString.replace(/\+/g, '%20').split('&'); for (var i = 0; i < parts.length; i++){ // split on first equal sign - var part = parts[i] + var part = parts[i]; pos = part.indexOf('='); if (pos >= 0) { components = [ @@ -675,9 +675,10 @@ OC.Notification={ * @param {string} html Message to display */ showHtml: function(html) { - if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){ - $('#notification').html(html); - $('#notification').fadeIn().css("display","inline"); + var notification = $('#notification'); + if((notification.filter('span.undo').length == 1) || OC.Notification.isHidden()){ + notification.html(html); + notification.fadeIn().css("display","inline"); }else{ OC.Notification.queuedNotifications.push(html); } @@ -688,9 +689,10 @@ OC.Notification={ * @param {string} text Message to display */ show: function(text) { - if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){ - $('#notification').text(text); - $('#notification').fadeIn().css("display","inline"); + var notification = $('#notification'); + if((notification.filter('span.undo').length == 1) || OC.Notification.isHidden()){ + notification.text(text); + notification.fadeIn().css("display","inline"); }else{ OC.Notification.queuedNotifications.push($('<div/>').text(text).html()); } -- GitLab From 51eee3dec1a52656fdfc6834de5c61c615d110d2 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Mon, 21 Apr 2014 14:42:50 +0200 Subject: [PATCH 106/187] Fix JSDoc --- core/js/eventsource.js | 12 +++++----- core/js/js.js | 18 +++++++------- core/js/oc-requesttoken.js | 5 ++-- core/js/tags.js | 49 ++++++++++++++++++++------------------ 4 files changed, 43 insertions(+), 41 deletions(-) diff --git a/core/js/eventsource.js b/core/js/eventsource.js index 536b180bc8..70fd3192ba 100644 --- a/core/js/eventsource.js +++ b/core/js/eventsource.js @@ -27,9 +27,9 @@ */ /** - * create a new event source - * @param string src - * @param object data to be send as GET + * Create a new event source + * @param {string} src + * @param {object} [data] to be send as GET */ OC.EventSource=function(src,data){ var dataStr=''; @@ -74,12 +74,12 @@ OC.EventSource=function(src,data){ this.close(); } }.bind(this)); -} +}; OC.EventSource.fallBackSources=[]; OC.EventSource.iframeCount=0;//number of fallback iframes OC.EventSource.fallBackCallBack=function(id,type,data){ OC.EventSource.fallBackSources[id].fallBackCallBack(type,data); -} +}; OC.EventSource.prototype={ typelessListeners:[], iframe:null, @@ -127,4 +127,4 @@ OC.EventSource.prototype={ this.source.close(); } } -} +}; diff --git a/core/js/js.js b/core/js/js.js index ff6538f982..76fe973fa5 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -147,7 +147,7 @@ function n(app, text_singular, text_plural, count, vars) { /** * Sanitizes a HTML string by replacing all potential dangerous characters with HTML entities -* @param {string} String to sanitize +* @param {string} s String to sanitize * @return {string} Sanitized string */ function escapeHTML(s) { @@ -207,7 +207,7 @@ var OC={ /** * Generates the absolute url for the given relative url, which can contain parameters. - * @param {string} URL + * @param {string} url * @param params * @return {string} Absolute URL for the given relative URL */ @@ -281,8 +281,8 @@ var OC={ * Redirect to the target URL, can also be used for downloads. * @param {string} targetURL URL to redirect to */ - redirect: function(targetUrl) { - window.location = targetUrl; + redirect: function(targetURL) { + window.location = targetURL; }, /** @@ -304,7 +304,7 @@ var OC={ * Load a script for the server and load it. If the script is already loaded, * the event handeler will be called directly * @param {string} app the app id to which the script belongs - * @param {string} script the filename of the script + * @param {string} script the filename of the script * @param ready event handeler to be called when the script is loaded */ addScript:function(app,script,ready){ @@ -326,7 +326,7 @@ var OC={ /** * Loads a CSS file * @param {string} app the app id to which the css style belongs - * @param {string} style the filename of the css file + * @param {string} style the filename of the css file */ addStyle:function(app,style){ var path=OC.filePath(app,'css',style+'.css'); @@ -1188,7 +1188,7 @@ $.fn.filterAttr = function(attr_name, attr_value) { /** * Returns a human readable filesize - * @param {number} Size in bytes + * @param {number} size Size in bytes * @return {string} */ function humanFileSize(size) { @@ -1235,7 +1235,7 @@ function getURLParameter(name) { /** * Takes an absolute timestamp and return a string with a human-friendly relative date - * @param {number} A Unix timestamp + * @param {number} timestamp A Unix timestamp */ function relative_modified_date(timestamp) { var timediff = Math.round((new Date()).getTime() / 1000) - timestamp; @@ -1344,7 +1344,7 @@ OC.get=function(name) { /** * Set a variable by name * @param {string} name - * @param mixed value + * @param {*} value */ OC.set=function(name, value) { var namespaces = name.split("."); diff --git a/core/js/oc-requesttoken.js b/core/js/oc-requesttoken.js index 0d7f40c592..02175a3d67 100644 --- a/core/js/oc-requesttoken.js +++ b/core/js/oc-requesttoken.js @@ -1,4 +1,3 @@ -$(document).on('ajaxSend',function(elm, xhr, s) { +$(document).on('ajaxSend',function(elm, xhr) { xhr.setRequestHeader('requesttoken', oc_requesttoken); -}); - +}); \ No newline at end of file diff --git a/core/js/tags.js b/core/js/tags.js index bc2b42bf5f..32a930259a 100644 --- a/core/js/tags.js +++ b/core/js/tags.js @@ -59,7 +59,8 @@ OC.Tags= { }); }, /** - * @param string type + * @param {string} type + * @param {string} tag * @return jQuery.Promise which resolves with an array of ids */ getIdsForTag:function(type, tag) { @@ -80,8 +81,8 @@ OC.Tags= { return defer.promise(); }, /** - * @param string type - * @return jQuery.Promise which resolves with an array of ids + * @param {string} type + * @return {*} jQuery.Promise which resolves with an array of ids */ getFavorites:function(type) { if(!type && !this.type) { @@ -101,8 +102,8 @@ OC.Tags= { return defer.promise(); }, /** - * @param string type - * @return jQuery.Promise which resolves with an array of id/name objects + * @param {string} type + * @return {*} jQuery.Promise which resolves with an array of id/name objects */ getTags:function(type) { if(!type && !this.type) { @@ -122,9 +123,10 @@ OC.Tags= { return defer.promise(); }, /** - * @param int id - * @param string type - * @return jQuery.Promise + * @param {number} id + * @param {string} tag + * @param {string} type + * @return {*} jQuery.Promise */ tagAs:function(id, tag, type) { if(!type && !this.type) { @@ -146,9 +148,10 @@ OC.Tags= { return defer.promise(); }, /** - * @param int id - * @param string type - * @return jQuery.Promise + * @param {number} id + * @param {string} tag + * @param {string} type + * @return {*} jQuery.Promise */ unTag:function(id, tag, type) { if(!type && !this.type) { @@ -170,9 +173,9 @@ OC.Tags= { return defer.promise(); }, /** - * @param int id - * @param string type - * @return jQuery.Promise + * @param {number} id + * @param {string} type + * @return {*} jQuery.Promise */ addToFavorites:function(id, type) { if(!type && !this.type) { @@ -194,9 +197,9 @@ OC.Tags= { return defer.promise(); }, /** - * @param int id - * @param string type - * @return jQuery.Promise + * @param {number} id + * @param {string} type + * @return {*} jQuery.Promise */ removeFromFavorites:function(id, type) { if(!type && !this.type) { @@ -218,9 +221,9 @@ OC.Tags= { return defer.promise(); }, /** - * @param string tag - * @param string type - * @return jQuery.Promise which resolves with an object with the name and the new id + * @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) { @@ -245,9 +248,9 @@ OC.Tags= { return defer.promise(); }, /** - * @param array tags - * @param string type - * @return jQuery.Promise + * @param {array} tags + * @param {string} type + * @return {*} jQuery.Promise */ deleteTags:function(tags, type) { if(!type && !this.type) { -- GitLab From e88731a477991f54120939724da3c8a455c48b97 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Mon, 21 Apr 2014 15:44:54 +0200 Subject: [PATCH 107/187] Some more PHPDoc fixes --- core/setup/controller.php | 2 +- lib/base.php | 35 +++++++++++++++++- lib/private/activitymanager.php | 2 +- lib/private/api.php | 4 +-- lib/private/app.php | 2 +- lib/private/appconfig.php | 1 + lib/private/archive.php | 7 ++-- lib/private/arrayparser.php | 13 +++++++ lib/private/geo.php | 12 +++---- lib/private/group.php | 11 ++++++ lib/private/helper.php | 2 +- lib/private/json.php | 5 ++- lib/private/l10n.php | 33 +++-------------- lib/private/migrate.php | 39 ++++++++++---------- lib/private/migration/content.php | 2 +- lib/private/ocs.php | 29 ++++++++------- lib/private/ocsclient.php | 17 +++++---- lib/private/preview.php | 16 +++++++++ lib/private/request.php | 1 + lib/private/response.php | 2 +- lib/private/search.php | 2 +- lib/private/template.php | 4 +-- lib/private/templatelayout.php | 14 ++++++-- lib/private/urlgenerator.php | 1 + lib/private/user.php | 11 ++++-- lib/private/util.php | 15 ++++---- lib/private/vobject.php | 59 +++++++++++++++++++++++++++---- lib/public/util.php | 21 +++++------ settings/admin.php | 2 +- status.php | 2 +- version.php | 4 ++- 31 files changed, 243 insertions(+), 127 deletions(-) diff --git a/core/setup/controller.php b/core/setup/controller.php index 1a8e9b2b76..cdbe0f7e12 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -122,7 +122,7 @@ class Controller { // Protect data directory here, so we can test if the protection is working \OC_Setup::protectDataDirectory(); try { - $htaccessWorking = \OC_Util::isHtAccessWorking(); + $htaccessWorking = \OC_Util::isHtaccessWorking(); } catch (\OC\HintException $e) { $errors[] = array( 'error' => $e->getMessage(), diff --git a/lib/base.php b/lib/base.php index 7098f480e2..83f54a8e4d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -185,7 +185,6 @@ class OC { if (file_exists(self::$configDir . "/config.php") and !is_writable(self::$configDir . "/config.php") ) { - $defaults = new OC_Defaults(); if (self::$CLI) { echo "Can't write into config directory!\n"; echo "This can usually be fixed by giving the webserver write access to the config directory\n"; @@ -305,6 +304,11 @@ class OC { } } + /** + * Checks if the version requires an update and shows + * @param bool $showTemplate Whether an update screen should get shown + * @return bool|void + */ public static function checkUpgrade($showTemplate = true) { if (self::needUpgrade()) { if ($showTemplate && !OC_Config::getValue('maintenance', false)) { @@ -799,6 +803,11 @@ class OC { self::handleLogin(); } + /** + * Load a PHP file belonging to the specified application + * @param array $param The application and file to load + * @return bool Whether the file has been found (will return 404 and false if not) + */ public static function loadAppScriptFile($param) { OC_App::loadApps(); $app = $param['app']; @@ -841,6 +850,10 @@ class OC { OC_Util::displayLoginPage(array_unique($error)); } + /** + * Remove outdated and therefore invalid tokens for a user + * @param string $user + */ protected static function cleanupLoginTokens($user) { $cutoff = time() - OC_Config::getValue('remember_login_cookie_lifetime', 60 * 60 * 24 * 15); $tokens = OC_Preferences::getKeys($user, 'login_token'); @@ -852,6 +865,10 @@ class OC { } } + /** + * Try to login a user via HTTP authentication + * @return bool|void + */ protected static function tryApacheAuth() { $return = OC_User::handleApacheAuth(); @@ -866,6 +883,10 @@ class OC { return is_null($return) ? false : true; } + /** + * Try to login a user using the remember me cookie. + * @return bool Whether the provided cookie was valid + */ protected static function tryRememberLogin() { if (!isset($_COOKIE["oc_remember_login"]) || !isset($_COOKIE["oc_token"]) @@ -907,6 +928,10 @@ class OC { return true; } + /** + * Tries to login a user using the formbased authentication + * @return bool|void + */ protected static function tryFormLogin() { if (!isset($_POST["user"]) || !isset($_POST['password'])) { return false; @@ -941,6 +966,10 @@ class OC { return true; } + /** + * Try to login a user using HTTP authentication. + * @return bool + */ protected static function tryBasicAuthLogin() { if (!isset($_SERVER["PHP_AUTH_USER"]) || !isset($_SERVER["PHP_AUTH_PW"]) @@ -959,6 +988,10 @@ class OC { } if (!function_exists('get_temp_dir')) { + /** + * Get the temporary dir to store uploaded data + * @return null|string Path to the temporary directory or null + */ function get_temp_dir() { if ($temp = ini_get('upload_tmp_dir')) return $temp; if ($temp = getenv('TMP')) return $temp; diff --git a/lib/private/activitymanager.php b/lib/private/activitymanager.php index 685809581a..66aa039eb1 100755 --- a/lib/private/activitymanager.php +++ b/lib/private/activitymanager.php @@ -46,7 +46,7 @@ class ActivityManager implements IManager { $type, $priority); } catch (\Exception $ex) { - // TODO: log the excepetion + // TODO: log the exception } } diff --git a/lib/private/api.php b/lib/private/api.php index b3b5eb1067..7488769095 100644 --- a/lib/private/api.php +++ b/lib/private/api.php @@ -127,9 +127,9 @@ class OC_API { /** * merge the returned result objects into one response * @param array $responses + * @return array|\OC_OCS_Result */ public static function mergeResponses($responses) { - $response = array(); // Sort into shipped and thirdparty $shipped = array( 'succeeded' => array(), @@ -191,7 +191,7 @@ class OC_API { // Merge the successful responses $data = array(); - foreach($responses as $app => $response) { + foreach($responses as $response) { if($response['shipped']) { $data = array_merge_recursive($response['response']->getData(), $data); } else { diff --git a/lib/private/app.php b/lib/private/app.php index c5fcad8f00..2f55b54b32 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -568,7 +568,7 @@ class OC_App{ /** * @brief Returns the navigation - * @return string + * @return array * * This function returns an array containing all entries added. The * entries are sorted by the key 'order' ascending. Additional to the keys diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php index fed6989a43..0cd6b3bc35 100644 --- a/lib/private/appconfig.php +++ b/lib/private/appconfig.php @@ -71,6 +71,7 @@ class AppConfig implements \OCP\IAppConfig { /** * @param string $app + * @return \string[] */ private function getAppValues($app) { $appCache = $this->getAppCache($app); diff --git a/lib/private/archive.php b/lib/private/archive.php index 6f51066ddf..a62f22cf6d 100644 --- a/lib/private/archive.php +++ b/lib/private/archive.php @@ -10,7 +10,7 @@ abstract class OC_Archive{ /** * open any of the supported archive types * @param string $path - * @return OC_Archive + * @return OC_Archive|void */ public static function open($path) { $ext=substr($path, strrpos($path, '.')); @@ -29,6 +29,9 @@ abstract class OC_Archive{ } } + /** + * @param $source + */ abstract function __construct($source); /** * add an empty folder to the archive @@ -39,7 +42,7 @@ abstract class OC_Archive{ /** * add a file to the archive * @param string $path - * @param string source either a local file or string data + * @param string $source either a local file or string data * @return bool */ abstract function addFile($path, $source=''); diff --git a/lib/private/arrayparser.php b/lib/private/arrayparser.php index d353e48657..a5e1f6653f 100644 --- a/lib/private/arrayparser.php +++ b/lib/private/arrayparser.php @@ -32,6 +32,7 @@ class ArrayParser { /** * @param string $string + * @return array|bool|int|null|string */ function parsePHP($string) { $string = $this->stripPHPTags($string); @@ -41,6 +42,7 @@ class ArrayParser { /** * @param string $string + * @return string */ function stripPHPTags($string) { $string = trim($string); @@ -55,6 +57,7 @@ class ArrayParser { /** * @param string $string + * @return string */ function stripAssignAndReturn($string) { $string = trim($string); @@ -67,6 +70,10 @@ class ArrayParser { return $string; } + /** + * @param string $string + * @return array|bool|int|null|string + */ function parse($string) { $string = trim($string); $string = trim($string, ';'); @@ -85,6 +92,7 @@ class ArrayParser { /** * @param string $string + * @return int */ function getType($string) { $string = strtolower($string); @@ -104,6 +112,7 @@ class ArrayParser { /** * @param string $string + * @return string */ function parseString($string) { return substr($string, 1, -1); @@ -111,6 +120,7 @@ class ArrayParser { /** * @param string $string + * @return int */ function parseNum($string) { return intval($string); @@ -118,6 +128,7 @@ class ArrayParser { /** * @param string $string + * @return bool */ function parseBool($string) { $string = strtolower($string); @@ -126,6 +137,7 @@ class ArrayParser { /** * @param string $string + * @return array */ function parseArray($string) { $body = substr($string, 5); @@ -157,6 +169,7 @@ class ArrayParser { /** * @param string $body + * @return array */ function splitArray($body) { $inSingleQuote = false;//keep track if we are inside quotes diff --git a/lib/private/geo.php b/lib/private/geo.php index 7094d885af..cd62511f0c 100644 --- a/lib/private/geo.php +++ b/lib/private/geo.php @@ -6,15 +6,11 @@ * See the COPYING-README file. */ class OC_Geo{ - /* - * @brief returns the closest timezone to coordinates - * @param (string) $latitude - Latitude - * @param (string) $longitude - Longitude - * @return (string) $timezone - closest timezone - */ /** - * @param integer $latitude - * @param integer $longitude + * @brief returns the closest timezone to coordinates + * @param $latitude + * @param $longitude + * @return mixed Closest timezone */ public static function timezone($latitude, $longitude) { $alltimezones = DateTimeZone::listIdentifiers(); diff --git a/lib/private/group.php b/lib/private/group.php index 4c187b538a..d9f430f833 100644 --- a/lib/private/group.php +++ b/lib/private/group.php @@ -200,6 +200,9 @@ class OC_Group { /** * @brief get a list of all groups + * @param string $search + * @param int|null $limit + * @param int|null $offset * @returns array with group names * * Returns a list with all groups @@ -225,6 +228,10 @@ class OC_Group { /** * @brief get a list of all users in a group + * @param string $gid + * @param string $search + * @param int $limit + * @param int $offset * @returns array with user ids */ public static function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) { @@ -260,6 +267,10 @@ class OC_Group { /** * @brief get a list of all display names in a group + * @param string $gid + * @param string $search + * @param int $limit + * @param int $offset * @returns array with display names (value) and user ids(key) */ public static function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { diff --git a/lib/private/helper.php b/lib/private/helper.php index d5214823de..ab1e0d3892 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -36,7 +36,7 @@ class OC_Helper { * @param array $parameters * @return * @internal param array $args with param=>value, will be appended to the returned url - * @returns the url + * @returns string the url * * Returns a url to the given app and file. */ diff --git a/lib/private/json.php b/lib/private/json.php index 34f81c3b8c..4634d7adfe 100644 --- a/lib/private/json.php +++ b/lib/private/json.php @@ -43,8 +43,7 @@ class OC_JSON{ } /** - * @brief Check an ajax get/post call if the request token is valid. - * @return json Error msg if not valid. + * Check an ajax get/post call if the request token is valid, send json error msg if not. */ public static function callCheck() { if( !OC_Util::isCallRegistered()) { @@ -55,7 +54,7 @@ class OC_JSON{ } /** - * Check if the user is a admin, send json error msg if not + * Check if the user is a admin, send json error msg if not. */ public static function checkAdminUser() { if( !OC_User::isAdminUser(OC_User::getUser())) { diff --git a/lib/private/l10n.php b/lib/private/l10n.php index a397945b82..c7e4328161 100644 --- a/lib/private/l10n.php +++ b/lib/private/l10n.php @@ -267,43 +267,18 @@ class OC_L10N implements \OCP\IL10N { $identifier = "_${text_singular}_::_${text_plural}_"; if( array_key_exists($identifier, $this->translations)) { return new OC_L10N_String( $this, $identifier, $parameters, $count ); - } - else{ + }else{ if($count === 1) { return new OC_L10N_String($this, $text_singular, $parameters, $count); - } - else{ + }else{ return new OC_L10N_String($this, $text_plural, $parameters, $count); } } } - /** - * @brief Translating - * @param $textArray The text array we need a translation for - * @returns Translation or the same text - * - * Returns the translation. If no translation is found, $textArray will be - * returned. - * - * - * @deprecated deprecated since ownCloud version 5.0 - * This method will probably be removed with ownCloud 6.0 - * - * - */ - public function tA($textArray) { - OC_Log::write('core', 'DEPRECATED: the method tA is deprecated and will be removed soon.', OC_Log::WARN); - $result = array(); - foreach($textArray as $key => $text) { - $result[$key] = (string)$this->t($text); - } - return $result; - } - /** * @brief getTranslations - * @returns Fetch all translations + * @returns array Fetch all translations * * Returns an associative array with all translations */ @@ -339,7 +314,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief get localizations - * @returns Fetch all localizations + * @returns array Fetch all localizations * * Returns an associative array with all localizations */ diff --git a/lib/private/migrate.php b/lib/private/migrate.php index 3fb3e334ea..5bcc11b061 100644 --- a/lib/private/migrate.php +++ b/lib/private/migrate.php @@ -69,9 +69,9 @@ class OC_Migrate{ /** * @brief exports a user, or owncloud instance - * @param optional $uid string user id of user to export if export type is user, defaults to current - * @param ootional $type string type of export, defualts to user - * @param otional $path string path to zip output folder + * @param string $uid user id of user to export if export type is user, defaults to current + * @param string $type type of export, defualts to user + * @param string $path path to zip output folder * @return string on error, path to zip on success */ public static function export( $uid=null, $type='user', $path=null ) { @@ -192,11 +192,12 @@ class OC_Migrate{ } /** - * @brief imports a user, or owncloud instance - * @param $path string path to zip - * @param optional $type type of import (user or instance) - * @param optional $uid userid of new user - */ + * @brief imports a user, or owncloud instance + * @param string $path path to zip + * @param string $type type of import (user or instance) + * @param string|null|int $uid userid of new user + * @return string + */ public static function import( $path, $type='user', $uid=null ) { $datadir = OC_Config::getValue( 'datadirectory' ); @@ -307,8 +308,8 @@ class OC_Migrate{ /** * @brief recursively deletes a directory - * @param string $dir string path of dir to delete - * $param optional $deleteRootToo bool delete the root directory + * @param string $dir path of dir to delete + * @param bool $deleteRootToo delete the root directory * @return bool */ private static function unlink_r( $dir, $deleteRootToo=true ) { @@ -406,7 +407,7 @@ class OC_Migrate{ /** * @brief generates json containing export info, and merges any data supplied - * @param optional $array array of data to include in the returned json + * @param array $array of data to include in the returned json * @return string */ static private function getExportInfo( $array=array() ) { @@ -430,8 +431,7 @@ class OC_Migrate{ /** * @brief connects to migration.db, or creates if not found - * @param $db optional path to migration.db, defaults to user data dir - * @param string $path + * @param string $path to migration.db, defaults to user data dir * @return bool whether the operation was successful */ static private function connectDB( $path=null ) { @@ -461,7 +461,7 @@ class OC_Migrate{ /** * @brief creates the tables in migration.db from an apps database.xml - * @param string $appid string id of the app + * @param string $appid id of the app * @return bool whether the operation was successful */ static private function createAppTables( $appid ) { @@ -499,7 +499,6 @@ class OC_Migrate{ /** * @brief tries to create the zip - * @param $path string path to zip destination * @return bool */ static private function createZip() { @@ -538,7 +537,7 @@ class OC_Migrate{ * @brief imports a new user * @param string $db string path to migration.db * @param $info object of migration info - * @param $uid optional uid to use + * @param string|null|int $uid uid to use * @return array of apps with import statuses, or false on failure. */ public static function importAppData( $db, $info, $uid=null ) { @@ -601,10 +600,10 @@ class OC_Migrate{ } - /* - * @brief creates a new user in the database - * @param $uid string user_id of the user to be created - * @param $hash string hash of the user to be created + /** + * creates a new user in the database + * @param string $uid user_id of the user to be created + * @param string $hash hash of the user to be created * @return bool result of user creation */ public static function createUser( $uid, $hash ) { diff --git a/lib/private/migration/content.php b/lib/private/migration/content.php index 43eba89b8d..b0e7a4e952 100644 --- a/lib/private/migration/content.php +++ b/lib/private/migration/content.php @@ -36,7 +36,7 @@ class OC_Migration_Content{ * @brief sets up the * @param ZipArchive $zip ZipArchive object * @param $db a database object (required for exporttype user) - * @return boolean|null + * @return bool|null */ public function __construct( $zip, $db=null ) { diff --git a/lib/private/ocs.php b/lib/private/ocs.php index bbe965ce56..211e822214 100644 --- a/lib/private/ocs.php +++ b/lib/private/ocs.php @@ -39,6 +39,7 @@ class OC_OCS { * @return string Data or if the key is not found and no default is set it will exit with a 400 Bad request */ public static function readData($method, $key, $type = 'raw', $default = null) { + $data = false; if ($method == 'get') { if (isset($_GET[$key])) { $data = $_GET[$key]; @@ -107,19 +108,19 @@ class OC_OCS { /** - * generates the xml or json response for the API call from an multidimenional data array. - * @param string $format - * @param string $status - * @param string $statuscode - * @param string $message - * @param array $data - * @param string $tag - * @param string $tagattribute - * @param int $dimension - * @param int $itemscount - * @param int $itemsperpage - * @return string xml/json - */ + * generates the xml or json response for the API call from an multidimenional data array. + * @param string $format + * @param string $status + * @param string $statuscode + * @param string $message + * @param array $data + * @param string $tag + * @param string $tagattribute + * @param int $dimension + * @param int|string $itemscount + * @param int|string $itemsperpage + * @return string xml/json + */ private static function generateXml($format, $status, $statuscode, $message, $data=array(), $tag='', $tagattribute='', $dimension=-1, $itemscount='', $itemsperpage='') { if($format=='json') { @@ -212,6 +213,8 @@ class OC_OCS { } /** + * @param $writer + * @param $data * @param string $node */ public static function toXml($writer, $data, $node) { diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php index 68dc2c2d6e..b0480caf02 100644 --- a/lib/private/ocsclient.php +++ b/lib/private/ocsclient.php @@ -95,7 +95,8 @@ class OC_OCSClient{ * @returns array with application data * * This function returns a list of all the applications on the OCS server - * @param integer $page + * @param $categories + * @param int $page * @param string $filter */ public static function getApplications($categories, $page, $filter) { @@ -148,6 +149,7 @@ class OC_OCSClient{ /** * @brief Get an the applications from the OCS server + * @param string $id * @returns array with application data * * This function returns an applications from the OCS server @@ -189,12 +191,13 @@ class OC_OCSClient{ } /** - * @brief Get the download url for an application from the OCS server - * @returns array with application data - * - * This function returns an download url for an applications from the OCS server - * @param integer $item - */ + * @brief Get the download url for an application from the OCS server + * @returns array with application data + * + * This function returns an download url for an applications from the OCS server + * @param string $id + * @param integer $item + */ public static function getApplicationDownload($id, $item) { if(OC_Config::getValue('appstoreenabled', true)==false) { return null; diff --git a/lib/private/preview.php b/lib/private/preview.php index 0187b4aacb..cdf2224038 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -72,6 +72,7 @@ class Preview { * @param int $maxX The maximum X size of the thumbnail. It can be smaller depending on the shape of the image * @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image * @param bool $scalingUp Disable/Enable upscaling of previews + * @throws \Exception * @return mixed (bool / string) * false if thumbnail does not exist * path to thumbnail if thumbnail exists @@ -172,6 +173,9 @@ class Preview { return $this->configMaxY; } + /** + * @return false|Files\FileInfo|\OCP\Files\FileInfo + */ protected function getFileInfo() { $absPath = $this->fileView->getAbsolutePath($this->file); $absPath = Files\Filesystem::normalizePath($absPath); @@ -211,6 +215,7 @@ class Preview { /** * @brief set the the max width of the preview * @param int $maxX + * @throws \Exception * @return $this */ public function setMaxX($maxX = 1) { @@ -231,6 +236,7 @@ class Preview { /** * @brief set the the max height of the preview * @param int $maxY + * @throws \Exception * @return $this */ public function setMaxY($maxY = 1) { @@ -401,6 +407,10 @@ class Preview { return $possibleThumbnails; } + /** + * @param string $name + * @return array + */ private function getDimensionsFromFilename($name) { $size = explode('-', $name); $x = (int) $size[0]; @@ -409,6 +419,11 @@ class Preview { return array($x, $y, $aspectRatio); } + /** + * @param int $x + * @param int $y + * @return bool + */ private function unscalable($x, $y) { $maxX = $this->getMaxX(); @@ -707,6 +722,7 @@ class Preview { /** * @param string $mimeType + * @return bool */ public static function isMimeSupported($mimeType) { if (!\OC_Config::getValue('enable_previews', true)) { diff --git a/lib/private/request.php b/lib/private/request.php index 93cb322f1b..90f7488eea 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -201,6 +201,7 @@ class OC_Request { /** * @brief get Path info from request, not urldecoded + * @throws Exception * @return string Path info or false when not found */ public static function getRawPathInfo() { diff --git a/lib/private/response.php b/lib/private/response.php index 983c682bf3..1aa5e629b8 100644 --- a/lib/private/response.php +++ b/lib/private/response.php @@ -50,7 +50,7 @@ class OC_Response { /** * @brief Set response status - * @param $status a HTTP status code, see also the STATUS constants + * @param int $status a HTTP status code, see also the STATUS constants */ static public function setStatus($status) { $protocol = $_SERVER['SERVER_PROTOCOL']; diff --git a/lib/private/search.php b/lib/private/search.php index 70d670e048..3f540090fd 100644 --- a/lib/private/search.php +++ b/lib/private/search.php @@ -45,7 +45,7 @@ class OC_Search{ /** * search all provider for $query - * @param string query + * @param string $query * @return array An array of OC_Search_Result's */ public static function search($query) { diff --git a/lib/private/template.php b/lib/private/template.php index 610d5fbc8e..3d18b52bac 100644 --- a/lib/private/template.php +++ b/lib/private/template.php @@ -136,6 +136,7 @@ class OC_Template extends \OC\Template\Base { * @param string $theme * @param string $app * @param string $fext + * @return array */ protected function findTemplate($theme, $app, $name, $fext) { // Check if it is a app template or not. @@ -232,7 +233,7 @@ class OC_Template extends \OC\Template\Base { * @brief Shortcut to print a simple page for guests * @param string $application The application we render the template for * @param string $name Name of the template - * @param string $parameters Parameters for the template + * @param array|string $parameters Parameters for the template * @return bool */ public static function printGuestPage( $application, $name, $parameters = array() ) { @@ -261,7 +262,6 @@ class OC_Template extends \OC\Template\Base { * print error page using Exception details * @param Exception $exception */ - public static function printExceptionErrorPage(Exception $exception) { $error_msg = $exception->getMessage(); if ($exception->getCode()) { diff --git a/lib/private/templatelayout.php b/lib/private/templatelayout.php index 0c0c8d9c8d..b7ac02a753 100644 --- a/lib/private/templatelayout.php +++ b/lib/private/templatelayout.php @@ -1,8 +1,6 @@ <?php use Assetic\Asset\AssetCollection; use Assetic\Asset\FileAsset; -use Assetic\Asset\GlobAsset; -use Assetic\AssetManager; use Assetic\AssetWriter; use Assetic\Filter\CssRewriteFilter; @@ -99,6 +97,10 @@ class OC_TemplateLayout extends OC_Template { } } + /** + * @param $styles + * @return array + */ static public function findStylesheetFiles($styles) { // Read the selected theme from the config file $theme = OC_Util::getTheme(); @@ -113,6 +115,10 @@ class OC_TemplateLayout extends OC_Template { return $locator->getResources(); } + /** + * @param $scripts + * @return array + */ static public function findJavascriptFiles($scripts) { // Read the selected theme from the config file $theme = OC_Util::getTheme(); @@ -168,6 +174,10 @@ class OC_TemplateLayout extends OC_Template { $this->append('cssfiles', OC_Helper::linkTo('assets', "$cssHash.css")); } + /** + * @param $files + * @return string + */ private static function hashScriptNames($files) { $files = array_map(function ($item) { diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index c28e6a7cb4..a56b0fe337 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -95,6 +95,7 @@ class URLGenerator implements IURLGenerator { * @brief Creates path to an image * @param string $app app * @param string $image image name + * @throws \RuntimeException If the image does not exist * @return string the url * * Returns the path to the image. diff --git a/lib/private/user.php b/lib/private/user.php index dc4c7ec3b6..7106d664ac 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -37,6 +37,10 @@ * logout() */ class OC_User { + + /** + * @return \OC\User\Session + */ public static function getUserSession() { return OC::$server->getUserSession(); } @@ -220,8 +224,8 @@ class OC_User { /** * @brief Try to login a user - * @param $uid The username of the user to log in - * @param $password The password of the user + * @param string $uid The username of the user to log in + * @param string $password The password of the user * @return boolean|null * * Log in a user and regenerate a new session - if the password is ok @@ -291,6 +295,8 @@ class OC_User { /** * @brief Sets user display name for session * @param string $uid + * @param null $displayName + * @return bool Whether the display name could get set */ public static function setDisplayName($uid, $displayName = null) { if (is_null($displayName)) { @@ -514,6 +520,7 @@ class OC_User { * @returns array with all uids * * Get a list of all users. + * @param string $search * @param integer $limit * @param integer $offset */ diff --git a/lib/private/util.php b/lib/private/util.php index e20de308e8..e6aa7b061b 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -87,7 +87,9 @@ class OC_Util { } /** + * Get the quota of a user * @param string $user + * @return int Quota bytes */ public static function getUserQuota($user){ $config = \OC::$server->getConfig(); @@ -301,8 +303,6 @@ class OC_Util { return $errors; } - $defaults = new \OC_Defaults(); - $webServerRestart = false; //check for database drivers if(!(is_callable('sqlite_open') or class_exists('SQLite3')) @@ -598,11 +598,11 @@ class OC_Util { } /** - * @return void + * @param array $errors */ public static function displayLoginPage($errors = array()) { $parameters = array(); - foreach( $errors as $key => $value ) { + foreach( $errors as $value ) { $parameters[$value] = true; } if (!empty($_POST['user'])) { @@ -827,12 +827,13 @@ class OC_Util { } /** - * @brief Check if the htaccess file is working + * @brief Check if the .htaccess file is working + * @throws OC\HintException If the testfile can't get written. * @return bool - * @description Check if the htaccess file is working by creating a test + * @description Check if the .htaccess file is working by creating a test * file in the data directory and trying to access via http */ - public static function isHtAccessWorking() { + public static function isHtaccessWorking() { if (!\OC_Config::getValue("check_for_working_htaccess", true)) { return true; } diff --git a/lib/private/vobject.php b/lib/private/vobject.php index 267176ebc0..a3e9f7ef79 100644 --- a/lib/private/vobject.php +++ b/lib/private/vobject.php @@ -36,8 +36,8 @@ class OC_VObject{ /** * @brief Parses the VObject - * @param string VObject as string - * @returns Sabre_VObject or null + * @param string $data VObject as string + * @returns Sabre\VObject\Reader|null */ public static function parse($data) { try { @@ -55,7 +55,7 @@ class OC_VObject{ /** * @brief Escapes semicolons - * @param string $value + * @param array $value * @return string */ public static function escapeSemicolons($value) { @@ -88,7 +88,7 @@ class OC_VObject{ } /** - * Constuctor + * Constructor * @param Sabre\VObject\Component or string */ public function __construct($vobject_or_name) { @@ -99,6 +99,11 @@ class OC_VObject{ } } + /** + * @todo Write documentation + * @param $item + * @param null $itemValue + */ public function add($item, $itemValue = null) { if ($item instanceof OC_VObject) { $item = $item->getVObject(); @@ -110,8 +115,8 @@ class OC_VObject{ * @brief Add property to vobject * @param object $name of property * @param object $value of property - * @param object $parameters of property - * @returns Sabre_VObject_Property newly created + * @param array|object $parameters of property + * @returns Sabre\VObject\Property newly created */ public function addProperty($name, $value, $parameters=array()) { if(is_array($value)) { @@ -131,6 +136,11 @@ class OC_VObject{ $this->vobject->add('UID', $uid); } + /** + * @todo Write documentation + * @param mixed $name + * @param string $string + */ public function setString($name, $string) { if ($string != '') { $string = strtr($string, array("\r\n"=>"\n")); @@ -145,7 +155,7 @@ class OC_VObject{ * When $datetime is set to 'now', use the current time * When $datetime is null, unset the property * - * @param string property name + * @param string $name * @param DateTime $datetime * @param int $dateType * @return void @@ -163,12 +173,22 @@ class OC_VObject{ } } + /** + * @todo Write documentation + * @param $name + * @return string + */ public function getAsString($name) { return $this->vobject->__isset($name) ? $this->vobject->__get($name)->value : ''; } + /** + * @todo Write documentation + * @param $name + * @return array + */ public function getAsArray($name) { $values = array(); if ($this->vobject->__isset($name)) { @@ -178,6 +198,11 @@ class OC_VObject{ return $values; } + /** + * @todo Write documentation + * @param $name + * @return array|OC_VObject|\Sabre\VObject\Property + */ public function &__get($name) { if ($name == 'children') { return $this->vobject->children; @@ -189,18 +214,38 @@ class OC_VObject{ return $return; } + /** + * @todo Write documentation + * @param string $name + * @param string $value + */ public function __set($name, $value) { return $this->vobject->__set($name, $value); } + /** + * @todo Write documentation + * @param string $name + */ public function __unset($name) { return $this->vobject->__unset($name); } + /** + * @todo Write documentation + * @param string $name + * @return bool + */ public function __isset($name) { return $this->vobject->__isset($name); } + /** + * @todo Write documentation + * @param $function + * @param $arguments + * @return mixed + */ public function __call($function, $arguments) { return call_user_func_array(array($this->vobject, $function), $arguments); } diff --git a/lib/public/util.php b/lib/public/util.php index f02213f244..f06ddd6664 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -57,7 +57,7 @@ class Util { * @param string $mailtext * @param string $fromaddress * @param string $fromname - * @param bool $html + * @param int $html * @param string $altbody * @param string $ccaddress * @param string $ccname @@ -85,7 +85,7 @@ class Util { * write exception into the log. Include the stack trace * if DEBUG mode is enabled * @param string $app app name - * @param Exception $ex exception to log + * @param \Exception $ex exception to log */ public static function logException( $app, \Exception $ex ) { $class = get_class($ex); @@ -156,6 +156,7 @@ class Util { * formats a timestamp in the "right" way * @param int $timestamp $timestamp * @param bool $dateOnly option to omit time from the result + * @return string timestamp */ public static function formatDate( $timestamp, $dateOnly=false) { return(\OC_Util::formatDate( $timestamp, $dateOnly )); @@ -203,9 +204,8 @@ class Util { * Creates an url using a defined route * @param $route * @param array $parameters - * @return * @internal param array $args with param=>value, will be appended to the returned url - * @return the url + * @return string the url */ public static function linkToRoute( $route, $parameters = array() ) { return \OC_Helper::linkToRoute($route, $parameters); @@ -284,8 +284,7 @@ class Util { /** * Returns the request uri, even if the website uses one or more reverse proxies - * - * @return the request uri + * @return string the request uri */ public static function getRequestUri() { return(\OC_Request::requestUri()); @@ -293,8 +292,7 @@ class Util { /** * Returns the script name, even if the website uses one or more reverse proxies - * - * @return the script name + * @returns string the script name */ public static function getScriptName() { return(\OC_Request::scriptName()); @@ -350,7 +348,7 @@ class Util { * Emits a signal. To get data from the slot use references! * @param string $signalclass class name of emitter * @param string $signalname name of signal - * @param string $params defautl: array() array with additional data + * @param array $params default: array() array with additional data * @return bool true if slots exists or false if not * * TODO: write example @@ -467,9 +465,8 @@ class Util { /** * Calculate free space left within user quota - * - * @param $dir the current folder where the user currently operates - * @return number of bytes representing + * @param string $dir the current folder where the user currently operates + * @return int number of bytes representing */ public static function freeSpace($dir) { return \OC_Helper::freeSpace($dir); diff --git a/settings/admin.php b/settings/admin.php index e75ca940ae..bce18b7cf6 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -14,7 +14,7 @@ OC_App::setActiveNavigationEntry( "admin" ); $tmpl = new OC_Template( 'settings', 'admin', 'user'); $forms=OC_App::getForms('admin'); -$htaccessworking=OC_Util::isHtAccessWorking(); +$htaccessworking=OC_Util::isHtaccessWorking(); $entries=OC_Log_Owncloud::getEntries(3); $entriesremain = count(OC_Log_Owncloud::getEntries(4)) > 3; diff --git a/status.php b/status.php index 861eaed9cd..4e423560aa 100644 --- a/status.php +++ b/status.php @@ -34,7 +34,7 @@ try { if (OC::$CLI) { print_r($values); } else { - echo(json_encode($values)); + print_unescaped(json_encode($values)); } } catch (Exception $ex) { diff --git a/version.php b/version.php index 5e5fa22cf8..079af52545 100644 --- a/version.php +++ b/version.php @@ -1,6 +1,8 @@ <?php -// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel when updating major/minor version number. +// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades +// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel +// when updating major/minor version number. $OC_Version=array(6, 90, 0, 2); // The human readable string -- GitLab From a9b4fba5281065a1a85f6af7a573f3d11d348bb6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Tue, 22 Apr 2014 01:54:58 -0400 Subject: [PATCH 108/187] [tx-robot] updated from transifex --- apps/files/l10n/ast.php | 1 + apps/files/l10n/el.php | 2 +- apps/files_external/l10n/cs_CZ.php | 7 ++++ core/l10n/ast.php | 2 ++ core/l10n/cs_CZ.php | 1 + core/l10n/el.php | 6 ++-- l10n/ast/core.po | 46 +++++++++++++------------- l10n/ast/files.po | 6 ++-- l10n/ast/files_trashbin.po | 4 +-- l10n/ast/files_versions.po | 4 +-- l10n/ast/settings.po | 6 ++-- l10n/ast/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 47 +++++++++++++------------- l10n/cs_CZ/files_external.po | 31 +++++++++--------- l10n/cs_CZ/lib.po | 27 +++++++-------- l10n/el/core.po | 51 +++++++++++++++-------------- l10n/el/files.po | 9 ++--- l10n/el/lib.po | 47 +++++++++++++------------- l10n/el/settings.po | 36 ++++++++++---------- l10n/sl/core.po | 4 +-- l10n/sl/files_external.po | 4 +-- l10n/sl/lib.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 | 8 ++--- l10n/templates/private.pot | 8 ++--- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 4 +-- l10n/tr/files.po | 4 +-- l10n/tr/files_sharing.po | 6 ++-- l10n/tr/lib.po | 42 ++++++++++++------------ l10n/tr/settings.po | 4 +-- l10n/tr/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 42 ++++++++++++------------ lib/l10n/cs_CZ.php | 1 + lib/l10n/el.php | 2 +- settings/l10n/ast.php | 1 + settings/l10n/el.php | 30 ++++++++--------- 45 files changed, 275 insertions(+), 256 deletions(-) diff --git a/apps/files/l10n/ast.php b/apps/files/l10n/ast.php index 93ae47b25c..c0b32e8e0c 100644 --- a/apps/files/l10n/ast.php +++ b/apps/files/l10n/ast.php @@ -22,6 +22,7 @@ $TRANSLATIONS = array( "Upload" => "Xubir", "Save" => "Guardar", "New folder" => "Nueva carpeta", +"Folder" => "Carpeta", "Cancel upload" => "Encaboxar xuba", "Download" => "Descargar", "Delete" => "Desaniciar" diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 713072d3e0..cf2022c2d7 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -69,7 +69,7 @@ $TRANSLATIONS = array( "Maximum upload size" => "Μέγιστο μέγεθος αποστολής", "max. possible: " => "μέγιστο δυνατό:", "Needed for multi-file and folder downloads." => "Απαραίτητο για κατέβασμα πολλαπλών αρχείων και φακέλων", -"Enable ZIP-download" => "Ενεργοποίηση κατεβάσματος ZIP", +"Enable ZIP-download" => "Επιτρέπεται η λήψη ZIP", "0 is unlimited" => "0 για απεριόριστο", "Maximum input size for ZIP files" => "Μέγιστο μέγεθος για αρχεία ZIP", "Save" => "Αποθήκευση", diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 6a4e09aa3a..90d64529b1 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -6,12 +6,19 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox.", "Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", "Saved" => "Uloženo", +"<b>Note:</b> " => "<b>Poznámka:</b>", +" and " => "a", +"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Poznámka:</b> cURL podpora v PHP není povolena nebo nainstalována. Není možné připojení %s. Prosím požádejte svého správce systému ať ji nainstaluje.", +"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Poznámka:</b> FTP podpora v PHP není povolena nebo nainstalována. Není možné připojení %s. Prosím požádejte svého správce systému ať ji nainstaluje.", +"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Poznámka:</b> \"%s\" není instalováno. Není možné připojení %s. Prosím požádejte svého správce systému o instalaci.", "External Storage" => "Externí úložiště", "Folder name" => "Název složky", "External storage" => "Externí úložiště", "Configuration" => "Nastavení", "Options" => "Možnosti", +"Available for" => "Dostupné pro", "Add storage" => "Přidat úložiště", +"No user or group" => "Žádný uživatel nebo skupina.", "All Users" => "Všichni uživatelé", "Groups" => "Skupiny", "Users" => "Uživatelé", diff --git a/core/l10n/ast.php b/core/l10n/ast.php index 0fcda328dc..667e452a0d 100644 --- a/core/l10n/ast.php +++ b/core/l10n/ast.php @@ -22,6 +22,7 @@ $TRANSLATIONS = array( "November" => "Payares", "December" => "Avientu", "Settings" => "Axustes", +"Saving..." => "Guardando...", "seconds ago" => "fai segundos", "_%n minute ago_::_%n minutes ago_" => array("fai %n minutu","fai %n minutos"), "_%n hour ago_::_%n hours ago_" => array("fai %n hora","fai %n hores"), @@ -57,6 +58,7 @@ $TRANSLATIONS = array( "share" => "compartir", "Password protected" => "Contraseña protexida", "Email sent" => "Corréu unviáu", +"Warning" => "Avisu", "Delete" => "Desaniciar", "Add" => "Amestar", "Edit tags" => "Editar etiquetes", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index c21d904b23..45c92406bf 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -51,6 +51,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} souborový konflikt","{count} souborové konflikty","{count} souborových konfliktů"), "One file conflict" => "Jeden konflikt souboru", "New Files" => "Nové soubory", +"Already existing files" => "Soubory již existují", "Which files do you want to keep?" => "Které soubory chcete ponechat?", "If you select both versions, the copied file will have a number added to its name." => "Pokud zvolíte obě verze, zkopírovaný soubor bude mít název doplněný o číslo.", "Cancel" => "Zrušit", diff --git a/core/l10n/el.php b/core/l10n/el.php index c899427ae3..e6a53c54d3 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -75,7 +75,7 @@ $TRANSLATIONS = array( "Share link" => "Διαμοιρασμός συνδέσμου", "Password protect" => "Προστασία συνθηματικού", "Password" => "Συνθηματικό", -"Allow Public Upload" => "Να επιτρέπεται η Δημόσια Αποστολή", +"Allow Public Upload" => "Επιτρέπεται η Δημόσια Αποστολή", "Email link to person" => "Αποστολή συνδέσμου με email ", "Send" => "Αποστολή", "Set expiration date" => "Ορισμός ημ. λήξης", @@ -85,7 +85,7 @@ $TRANSLATIONS = array( "group" => "ομάδα", "Resharing is not allowed" => "Ξαναμοιρασμός δεν επιτρέπεται", "Shared in {item} with {user}" => "Διαμοιρασμός του {item} με τον {user}", -"Unshare" => "Σταμάτημα διαμοιρασμού", +"Unshare" => "Διακοπή διαμοιρασμού", "notify by email" => "ειδοποίηση με email", "can edit" => "δυνατότητα αλλαγής", "access control" => "έλεγχος πρόσβασης", @@ -128,7 +128,7 @@ $TRANSLATIONS = array( "Personal" => "Προσωπικά", "Users" => "Χρήστες", "Apps" => "Εφαρμογές", -"Admin" => "Διαχειριστής", +"Admin" => "Διαχείριση", "Help" => "Βοήθεια", "Error loading tags" => "Σφάλμα φόρτωσης ετικετών", "Tag already exists" => "Υπάρχει ήδη η ετικέτα", diff --git a/l10n/ast/core.po b/l10n/ast/core.po index ecfeb86a37..2a19c06bdc 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: Tornes Llume <l.lumex03.tornes@gmail.com>\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -141,7 +141,7 @@ msgstr "Axustes" #: js/js.js:564 msgid "Saving..." -msgstr "" +msgstr "Guardando..." #: js/js.js:1099 msgid "seconds ago" @@ -295,12 +295,12 @@ msgstr "Compartíu" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fallu" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,73 +364,73 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupu" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dexar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar per corréu" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pue editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control d'accesu" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "xubir" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "desaniciar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Contraseña protexida" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Corréu unviáu" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" -msgstr "" +msgstr "Avisu" #: js/tags.js:4 msgid "The object type is not specified." diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 260501f288..89e4cae67d 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 17:44+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -359,7 +359,7 @@ msgstr "Nueva carpeta" #: templates/index.php:13 msgid "Folder" -msgstr "" +msgstr "Carpeta" #: templates/index.php:16 msgid "From link" diff --git a/l10n/ast/files_trashbin.po b/l10n/ast/files_trashbin.po index 69e0e804c2..5e51f4759a 100644 --- a/l10n/ast/files_trashbin.po +++ b/l10n/ast/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 20:42+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: Iñigo Varela <ivarela@softastur.org>\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/files_versions.po b/l10n/ast/files_versions.po index 7ed9097b99..7e36b74889 100644 --- a/l10n/ast/files_versions.po +++ b/l10n/ast/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 20:40+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 14:21+0000\n" "Last-Translator: Iñigo Varela <ivarela@softastur.org>\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index b8bc741fae..800d6e3ec2 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 17:44+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -565,7 +565,7 @@ msgstr "" #: templates/admin.php:357 msgid "Port" -msgstr "" +msgstr "Puertu" #: templates/admin.php:362 msgid "Credentials" diff --git a/l10n/ast/user_ldap.po b/l10n/ast/user_ldap.po index 734b55e218..9b6520840c 100644 --- a/l10n/ast/user_ldap.po +++ b/l10n/ast/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-21 01:55-0400\n" -"PO-Revision-Date: 2014-04-20 22:01+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 17:44+0000\n" "Last-Translator: Tornes Llume <l.lumex03.tornes@gmail.com>\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index d39979f547..d5e17f6136 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -7,6 +7,7 @@ # dibalaj <dibalaj@dibalaj.cz>, 2013 # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013 +# svetlemodry <jaroslav@lichtblau.cz>, 2014 # Martin <fireball@atlas.cz>, 2013 # m23 <black23@gmail.com>, 2014 # pstast <petr@stastny.eu>, 2013-2014 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: pstast <petr@stastny.eu>\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\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" @@ -247,7 +248,7 @@ msgstr "Nové soubory" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Soubory již existují" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" @@ -307,12 +308,12 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -376,71 +377,71 @@ msgstr "Sdílet e-mailem:" msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "skupina" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "upozornit e-mailem" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "vytvořit" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualizovat" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "smazat" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "sdílet" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail odeslán" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varování" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 05a39f7eb8..82abf9c3df 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# svetlemodry <jaroslav@lichtblau.cz>, 2014 # m23 <black23@gmail.com>, 2014 # pstast <petr@stastny.eu>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\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" @@ -43,34 +44,34 @@ msgstr "Chyba při nastavení úložiště Google Drive" msgid "Saved" msgstr "Uloženo" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " -msgstr "" +msgstr "<b>Poznámka:</b>" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "a" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Poznámka:</b> cURL podpora v PHP není povolena nebo nainstalována. Není možné připojení %s. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Poznámka:</b> FTP podpora v PHP není povolena nebo nainstalována. Není možné připojení %s. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "<b>Poznámka:</b> \"%s\" není instalováno. Není možné připojení %s. Prosím požádejte svého správce systému o instalaci." #: templates/settings.php:2 msgid "External Storage" @@ -94,7 +95,7 @@ msgstr "Možnosti" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "Dostupné pro" #: templates/settings.php:32 msgid "Add storage" @@ -102,7 +103,7 @@ msgstr "Přidat úložiště" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Žádný uživatel nebo skupina." #: templates/settings.php:95 msgid "All Users" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 18418dadda..a6d2b528e1 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -5,6 +5,7 @@ # Translators: # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013 +# svetlemodry <jaroslav@lichtblau.cz>, 2014 # m23 <black23@gmail.com>, 2014 # pstast <petr@stastny.eu>, 2013-2014 # Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-14 04:55+0000\n" -"Last-Translator: pstast <petr@stastny.eu>\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\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" @@ -53,7 +54,7 @@ msgstr "Uživatelé" msgid "Admin" msgstr "Administrace" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Selhala aktualizace verze \"%s\"." @@ -78,7 +79,7 @@ msgstr "Stahování v ZIPu je vypnuto." msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zpět k souborům" @@ -152,15 +153,15 @@ msgstr "Nelze vytvořit složku aplikace. Opravte práva souborů. %s" msgid "Application is not enabled" msgstr "Aplikace není povolena" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Chyba ověření" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token vypršel. Obnovte prosím stránku." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Neznámý uživatel" @@ -346,20 +347,20 @@ msgstr "minulý rok" msgid "years ago" msgstr "před lety" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Pouze následující znaky jsou povoleny v uživatelském jménu: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Uživatelské jméno je již využíváno" diff --git a/l10n/el/core.po b/l10n/el/core.po index 2e4e99bc8f..9b44871cb2 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -13,13 +13,14 @@ # Wasilis <inactive+Wasilis@transifex.com>, 2013 # Wasilis <inactive+Wasilis@transifex.com>, 2013 # KAT.RAT12 <spanish.katerina@gmail.com>, 2013 +# Γιάννης Ανθυμίδης <yannanth@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 22:00+0000\n" +"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\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" @@ -304,12 +305,12 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Σφάλμα" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -347,7 +348,7 @@ msgstr "Συνθηματικό" #: js/share.js:230 msgid "Allow Public Upload" -msgstr "Να επιτρέπεται η Δημόσια Αποστολή" +msgstr "Επιτρέπεται η Δημόσια Αποστολή" #: js/share.js:234 msgid "Email link to person" @@ -373,71 +374,71 @@ msgstr "Διαμοιρασμός μέσω email:" msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ομάδα" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" -msgstr "Σταμάτημα διαμοιρασμού" +msgstr "Διακοπή διαμοιρασμού" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "ειδοποίηση με email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "δημιουργία" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ενημέρωση" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "διαγραφή" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Το Email απεστάλη " -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Προειδοποίηση" @@ -577,7 +578,7 @@ msgstr "Εφαρμογές" #: strings.php:8 msgid "Admin" -msgstr "Διαχειριστής" +msgstr "Διαχείριση" #: strings.php:9 msgid "Help" diff --git a/l10n/el/files.po b/l10n/el/files.po index 12030b417f..b2cbbde59f 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -9,13 +9,14 @@ # frerisp <petrosfreris@gmail.com>, 2013 # pe_ppe <peppe@cs.uoi.gr>, 2014 # vkehayas <vkehayas@gmail.com>, 2013 +# Γιάννης Ανθυμίδης <yannanth@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 21:50+0000\n" +"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\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" @@ -333,7 +334,7 @@ msgstr "Απαραίτητο για κατέβασμα πολλαπλών αρχ #: templates/admin.php:16 msgid "Enable ZIP-download" -msgstr "Ενεργοποίηση κατεβάσματος ZIP" +msgstr "Επιτρέπεται η λήψη ZIP" #: templates/admin.php:19 msgid "0 is unlimited" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 49613a13f1..35ac8cf393 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,13 +7,14 @@ # Efstathios Iosifidis <iosifidis@opensuse.org>, 2013 # pe_ppe <peppe@cs.uoi.gr>, 2014 # vkehayas <vkehayas@gmail.com>, 2013-2014 +# Γιάννης Ανθυμίδης <yannanth@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 21:50+0000\n" +"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\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" @@ -50,9 +51,9 @@ msgstr "Χρήστες" #: private/app.php:402 msgid "Admin" -msgstr "Διαχειριστής" +msgstr "Διαχείριση" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." @@ -77,7 +78,7 @@ msgstr "Η λήψη ZIP απενεργοποιήθηκε." msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" @@ -151,15 +152,15 @@ msgstr "Δεν είναι δυνατόν να δημιουργηθεί ο φάκ msgid "Application is not enabled" msgstr "Δεν ενεργοποιήθηκε η εφαρμογή" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Άγνωστος χρήστης" @@ -293,68 +294,68 @@ msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" msgid "Could not find category \"%s\"" msgstr "Αδυναμία εύρεσης κατηγορίας \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n λεπτά πριν" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n ώρες πριν" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "σήμερα" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "χτες" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n ημέρες πριν" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "τελευταίο μήνα" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n μήνες πριν" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "τελευταίο χρόνο" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "χρόνια πριν" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 652efd0b27..667c9d73d9 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 22:10+0000\n" +"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\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" @@ -463,11 +463,11 @@ msgstr "Η τελευταία εκτέλεση του cron ήταν στις %s. #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "Η διεργασία cron δεν εκτελέστηκε ακόμα!" +msgstr "Η διεργασία cron δεν έχει εκτελεστεί ακόμα!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" -msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" +msgstr "Εκτελεί μια διεργασία κάθε φορά που φορτώνεται μια σελίδα" #: templates/admin.php:192 msgid "" @@ -485,52 +485,52 @@ msgstr "Διαμοιρασμός" #: templates/admin.php:211 msgid "Enable Share API" -msgstr "Ενεργοποίηση API Διαμοιρασμού" +msgstr "Ενεργοποίηση API διαμοιρασμού" #: templates/admin.php:212 msgid "Allow apps to use the Share API" -msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" +msgstr "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές " #: templates/admin.php:219 msgid "Allow links" -msgstr "Να επιτρέπονται σύνδεσμοι" +msgstr "Επιτρέπονται οι σύνδεσμοι" #: templates/admin.php:220 msgid "Allow users to share items to the public with links" -msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" +msgstr "Επιτρέπει τους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" #: templates/admin.php:227 msgid "Allow public uploads" -msgstr "Επιτρέψτε κοινόχρηστο ανέβασμα" +msgstr "Επιτρέπεται το κοινόχρηστο ανέβασμα" #: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" +msgstr "Επιτρέπει τους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" #: templates/admin.php:235 msgid "Allow resharing" -msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" +msgstr "Επιτρέπεται ο επαναδιαμοιρασμός" #: templates/admin.php:236 msgid "Allow users to share items shared with them again" -msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" +msgstr "Επιτρέπει στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" #: templates/admin.php:243 msgid "Allow users to share with anyone" -msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" +msgstr "Επιτρέπεται στους χρήστες ο διαμοιρασμός με οποιονδήποτε" #: templates/admin.php:246 msgid "Allow users to only share with users in their groups" -msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" +msgstr "Επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" #: templates/admin.php:253 msgid "Allow mail notification" -msgstr "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" +msgstr "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" #: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" -msgstr "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" +msgstr "Επιτρέπει τους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" #: templates/admin.php:261 msgid "Security" @@ -543,7 +543,7 @@ msgstr "Επιβολή χρήσης HTTPS" #: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης." +msgstr "Επιβάλλει τους πελάτες να συνδέονται στο %s μέσω κρυπτογραφημένης σύνδεσης." #: templates/admin.php:282 #, php-format diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 9be90e0fbf..510618e32b 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-21 01:55-0400\n" -"PO-Revision-Date: 2014-04-20 20:53+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index e50f93e901..f3e8a74c37 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-21 01:55-0400\n" -"PO-Revision-Date: 2014-04-20 20:58+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 9693bf3642..fd0b2af9f9 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-21 01:55-0400\n" -"PO-Revision-Date: 2014-04-20 20:59+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -149,15 +149,15 @@ msgstr "Programske mape ni mogoče ustvariti. Ni ustreznih dovoljenj. %s" msgid "Application is not enabled" msgstr "Program ni omogočen" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Napaka overjanja" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Žeton je potekel. Stran je treba ponovno naložiti." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Neznan uporabnik" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 39ea1ec329..0b2245ab07 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 27022f2c79..5d016437f5 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index b4d444deba..3ebc52afb2 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 6307ddbdad..c05cc89332 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 1bbd741991..14a3151d37 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 1372eebdb1..c4de45e217 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 1306b57e85..9f25be229f 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 865c7b594c..805e0b895c 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index e180700c12..2cac8f8b91 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: json.php:40 json.php:63 json.php:88 +#: json.php:40 json.php:62 json.php:87 msgid "Authentication error" msgstr "" -#: json.php:52 +#: json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: json.php:75 +#: json.php:74 msgid "Unknown user" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a9d7325486..56bf1970de 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 53f6270a73..9bb697c59c 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index d7194035f6..ad4ebbcb2d 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: 2014-04-21 01:55-0400\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 5aaaf0fb8e..51a7eb73b6 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 13:51+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index ea746fec10..cf5079ec50 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-21 01:55-0400\n" -"PO-Revision-Date: 2014-04-20 13:10+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index e12ff2554c..461d684d2a 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/share.js:13 +#: js/share.js:33 msgid "Shared by {owner}" msgstr "{owner} tarafından paylaşılmış" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index fa1e63236e..d8048f25bd 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-11 14:15+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 13:52+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Kullanıcılar" msgid "Admin" msgstr "Yönetici" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" yükseltme başarısız oldu." @@ -77,7 +77,7 @@ msgstr "ZIP indirmeleri kapatıldı." msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Dosyalara dön" @@ -151,15 +151,15 @@ msgstr "Uygulama dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s" msgid "Application is not enabled" msgstr "Uygulama etkinleştirilmedi" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Kimlik doğrulama hatası" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Jetonun süresi geçti. Lütfen sayfayı yenileyin." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Bilinmeyen kullanıcı" @@ -293,68 +293,68 @@ msgstr "%s sizinle »%s« paylaşımında bulundu" msgid "Could not find category \"%s\"" msgstr "\"%s\" kategorisi bulunamadı" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "saniyeler önce" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n dakika önce" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n saat önce" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "bugün" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "dün" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n gün önce" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "geçen ay" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n ay önce" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "geçen yıl" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "yıl önce" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Kullanıcı adında sadece bu karakterlere izin verilmektedir: \"a-z\", \"A-Z\", \"0-9\", ve \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Bu kullanıcı adı zaten kullanımda" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 768e0b1b45..1ba73232a7 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-21 01:55-0400\n" -"PO-Revision-Date: 2014-04-21 00:50+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 8a7ded5dfe..85c8305611 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 16:38+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 2f81ecf4ea..8a5f79f166 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"PO-Revision-Date: 2014-04-21 14:43+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" @@ -294,12 +294,12 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "错误" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "共享时出错" @@ -363,71 +363,71 @@ msgstr "通过Email共享" msgid "No people found" msgstr "未找到此人" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "组" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "取消共享" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "以邮件通知" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "可以修改" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "访问控制" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "创建" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "更新" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "删除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "共享" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "邮件已发送" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "警告" diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index d535b97f63..8348f7ef0d 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), "last year" => "minulý rok", "years ago" => "před lety", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Pouze následující znaky jsou povoleny v uživatelském jménu: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"", "A valid username must be provided" => "Musíte zadat platné uživatelské jméno", "A valid password must be provided" => "Musíte zadat platné heslo", "The username is already being used" => "Uživatelské jméno je již využíváno" diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 244cc50b84..109104e406 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -6,7 +6,7 @@ $TRANSLATIONS = array( "Personal" => "Προσωπικά", "Settings" => "Ρυθμίσεις", "Users" => "Χρήστες", -"Admin" => "Διαχειριστής", +"Admin" => "Διαχείριση", "Failed to upgrade \"%s\"." => "Αποτυχία αναβάθμισης του \"%s\".", "Unknown filetype" => "Άγνωστος τύπος αρχείου", "Invalid image" => "Μη έγκυρη εικόνα", diff --git a/settings/l10n/ast.php b/settings/l10n/ast.php index 81300ed563..b86d7d88bf 100644 --- a/settings/l10n/ast.php +++ b/settings/l10n/ast.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "Error" => "Fallu", "Groups" => "Grupos", "Delete" => "Desaniciar", +"Port" => "Puertu", "More" => "Más", "Less" => "Menos", "Password" => "Contraseña", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 0b6ee6a298..8655fa05c7 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -95,26 +95,26 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Last cron was executed at %s." => "Η τελευταία εκτέλεση του cron ήταν στις %s", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Η τελευταία εκτέλεση του cron ήταν στις %s. Αυτό είναι πάνω από μια ώρα πριν, ίσως κάτι δεν πάει καλά.", -"Cron was not executed yet!" => "Η διεργασία cron δεν εκτελέστηκε ακόμα!", -"Execute one task with each page loaded" => "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται", +"Cron was not executed yet!" => "Η διεργασία cron δεν έχει εκτελεστεί ακόμα!", +"Execute one task with each page loaded" => "Εκτελεί μια διεργασία κάθε φορά που φορτώνεται μια σελίδα", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά.", "Sharing" => "Διαμοιρασμός", -"Enable Share API" => "Ενεργοποίηση API Διαμοιρασμού", -"Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού", -"Allow links" => "Να επιτρέπονται σύνδεσμοι", -"Allow users to share items to the public with links" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους", -"Allow public uploads" => "Επιτρέψτε κοινόχρηστο ανέβασμα", -"Allow users to enable others to upload into their publicly shared folders" => "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους", -"Allow resharing" => "Να επιτρέπεται ο επαναδιαμοιρασμός", -"Allow users to share items shared with them again" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί", -"Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε", -"Allow users to only share with users in their groups" => "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", -"Allow mail notification" => "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου", -"Allow user to send mail notification for shared files" => "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", +"Enable Share API" => "Ενεργοποίηση API διαμοιρασμού", +"Allow apps to use the Share API" => "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", +"Allow links" => "Επιτρέπονται οι σύνδεσμοι", +"Allow users to share items to the public with links" => "Επιτρέπει τους χρήστες να διαμοιράζουν δημόσια με συνδέσμους", +"Allow public uploads" => "Επιτρέπεται το κοινόχρηστο ανέβασμα", +"Allow users to enable others to upload into their publicly shared folders" => "Επιτρέπει τους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους", +"Allow resharing" => "Επιτρέπεται ο επαναδιαμοιρασμός", +"Allow users to share items shared with them again" => "Επιτρέπει στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί", +"Allow users to share with anyone" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός με οποιονδήποτε", +"Allow users to only share with users in their groups" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", +"Allow mail notification" => "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου", +"Allow user to send mail notification for shared files" => "Επιτρέπει τους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", -"Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης.", +"Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους πελάτες να συνδέονται στο %s μέσω κρυπτογραφημένης σύνδεσης.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL.", "Email Server" => "Διακομιστής Email", "This is used for sending out notifications." => "Χρησιμοποιείται για αποστολή ειδοποιήσεων.", -- GitLab From 54476c468cea278f85a26c8fbbb12052fbcf3fe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Tue, 22 Apr 2014 09:34:08 +0200 Subject: [PATCH 109/187] fix spelling 'Allow user ...' -> 'Allow users ...' --- 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 10f19b8891..07b5ee7860 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -251,7 +251,7 @@ if (!$_['internetconnectionworking']) { <input type="checkbox" name="shareapi_allow_mail_notification" id="allowMailNotification" value="1" <?php if ($_['allowMailNotification'] === 'yes') print_unescaped('checked="checked"'); ?> /> <label for="allowMailNotification"><?php p($l->t('Allow mail notification'));?></label><br/> - <em><?php p($l->t('Allow user to send mail notification for shared files')); ?></em> + <em><?php p($l->t('Allow users to send mail notification for shared files')); ?></em> </td> </tr> </table> -- GitLab From 56bc5f8f43c50373d6d29c90d381c616fb53960d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Tue, 22 Apr 2014 09:43:29 +0200 Subject: [PATCH 110/187] fixing typo --- core/js/eventsource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/eventsource.js b/core/js/eventsource.js index 70fd3192ba..fca39e597e 100644 --- a/core/js/eventsource.js +++ b/core/js/eventsource.js @@ -23,7 +23,7 @@ * wrapper for server side events (http://en.wikipedia.org/wiki/Server-sent_events) * includes a fallback for older browsers and IE * - * use server side events with causion, to many open requests can hang the server + * use server side events with caution, to many open requests can hang the server */ /** -- GitLab From 29bc82be8d466b3ee065e344952120b3c8c53696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Tue, 22 Apr 2014 09:54:25 +0200 Subject: [PATCH 111/187] fixing typos --- core/js/js.js | 49 ++++++++++++++++++++++++------------------------- 1 file changed, 24 insertions(+), 25 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 76fe973fa5..517c39f6f8 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -302,10 +302,10 @@ var OC={ /** * Load a script for the server and load it. If the script is already loaded, - * the event handeler will be called directly + * the event handler will be called directly * @param {string} app the app id to which the script belongs * @param {string} script the filename of the script - * @param ready event handeler to be called when the script is loaded + * @param ready event handler to be called when the script is loaded */ addScript:function(app,script,ready){ var deferred, path=OC.filePath(app,'js',script+'.js'); @@ -516,7 +516,7 @@ var OC={ }, /** - * For menu toggeling + * For menu toggling * @todo Write documentation */ registerMenu: function($toggle, $menuEl) { @@ -670,7 +670,7 @@ OC.Notification={ /** * Shows a notification as HTML without being sanitized before. - * If you pass unsanitized userinput this may lead to a XSS vulnerability. + * If you pass unsanitized user input this may lead to a XSS vulnerability. * Consider using show() instead of showHTML() * @param {string} html Message to display */ @@ -715,14 +715,14 @@ OC.Breadcrumb={ /** * @todo Write documentation * @param dir - * @param leafname - * @param leaflink + * @param leafName + * @param leafLink */ - show:function(dir, leafname, leaflink){ + show:function(dir, leafName, leafLink){ if(!this.container){//default this.container=$('#controls'); } - this._show(this.container, dir, leafname, leaflink); + this._show(this.container, dir, leafName, leafLink); }, _show:function(container, dir, leafname, leaflink){ var self = this; @@ -929,7 +929,7 @@ function replaceSVG($el){ } /** - * prototypal inharitence functions + * prototypical inheritance functions * @todo Write documentation * usage: * MySubObject=object(MyObject) @@ -1187,7 +1187,7 @@ $.fn.filterAttr = function(attr_name, attr_value) { }; /** - * Returns a human readable filesize + * Returns a human readable file size * @param {number} size Size in bytes * @return {string} */ @@ -1238,21 +1238,20 @@ function getURLParameter(name) { * @param {number} timestamp A Unix timestamp */ function relative_modified_date(timestamp) { - var timediff = Math.round((new Date()).getTime() / 1000) - timestamp; - var diffminutes = Math.round(timediff/60); - var diffhours = Math.round(diffminutes/60); - var diffdays = Math.round(diffhours/24); - var diffmonths = Math.round(diffdays/31); - if(timediff < 60) { return t('core','seconds ago'); } - else if(timediff < 3600) { return n('core','%n minute ago', '%n minutes ago', diffminutes); } - else if(timediff < 86400) { return n('core', '%n hour ago', '%n hours ago', diffhours); } - else if(timediff < 86400) { return t('core','today'); } - else if(timediff < 172800) { return t('core','yesterday'); } - else if(timediff < 2678400) { return n('core', '%n day ago', '%n days ago', diffdays); } - else if(timediff < 5184000) { return t('core','last month'); } - else if(timediff < 31556926) { return n('core', '%n month ago', '%n months ago', diffmonths); } - //else if(timediff < 31556926) { return t('core','months ago'); } - else if(timediff < 63113852) { return t('core','last year'); } + var timeDiff = Math.round((new Date()).getTime() / 1000) - timestamp; + var diffMinutes = Math.round(timeDiff/60); + var diffHours = Math.round(diffMinutes/60); + var diffDays = Math.round(diffHours/24); + var diffMonths = Math.round(diffDays/31); + if(timeDiff < 60) { return t('core','seconds ago'); } + else if(timeDiff < 3600) { return n('core','%n minute ago', '%n minutes ago', diffMinutes); } + else if(timeDiff < 86400) { return n('core', '%n hour ago', '%n hours ago', diffHours); } + else if(timeDiff < 86400) { return t('core','today'); } + else if(timeDiff < 172800) { return t('core','yesterday'); } + else if(timeDiff < 2678400) { return n('core', '%n day ago', '%n days ago', diffDays); } + else if(timeDiff < 5184000) { return t('core','last month'); } + else if(timeDiff < 31556926) { return n('core', '%n month ago', '%n months ago', diffMonths); } + else if(timeDiff < 63113852) { return t('core','last year'); } else { return t('core','years ago'); } } -- GitLab From 381c1c8b6e142194c0560dc35754e1d3bd9842b4 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Tue, 22 Apr 2014 10:43:35 +0200 Subject: [PATCH 112/187] Fix typo to => too --- core/js/eventsource.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/eventsource.js b/core/js/eventsource.js index fca39e597e..70f4a2a9aa 100644 --- a/core/js/eventsource.js +++ b/core/js/eventsource.js @@ -20,10 +20,10 @@ */ /** - * wrapper for server side events (http://en.wikipedia.org/wiki/Server-sent_events) + * Wrapper for server side events (http://en.wikipedia.org/wiki/Server-sent_events) * includes a fallback for older browsers and IE * - * use server side events with caution, to many open requests can hang the server + * Use server side events with caution, too many open requests can hang the server */ /** -- GitLab From cef795790f50f0b84eb2e6b12439755f908eb076 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Tue, 22 Apr 2014 11:36:39 +0200 Subject: [PATCH 113/187] thinner add icon --- core/img/actions/add.png | Bin 111 -> 132 bytes core/img/actions/add.svg | 14 +++++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/core/img/actions/add.png b/core/img/actions/add.png index 3c051e4d73e64a7e17df89d6e1344643b515d6ea..8ae17cfe11b4365254e1acbc1c0ade0793f25bef 100644 GIT binary patch delta 114 zcmd0AVVoe5!@|tK!0`6&qaX$b2B83-5ZC|z|1+S1lsN}xF)%Q&mIV0)GcYl;vUi#b zwlXj<$auOqhHzX@PB_38!Q7F^F_U3sfPq7rz-rmmXBm`VvrqlUWm5t&%G1@)Wt~$( F699VJ9(@1+ delta 93 zcmZo+%%30;&dAKbz@TcItHi*-z!u;W;`;ype+CAI&_kE&7#J8BOM?7@862M7NMm4N y5chO(4B?1QPDw~ex!2wF>a`$;Z&xEDgJ3Cl=Y-GEvl$o|7(8A5T-G@yGywqGejJkk diff --git a/core/img/actions/add.svg b/core/img/actions/add.svg index 250746e166..3a2f01e1af 100644 --- a/core/img/actions/add.svg +++ b/core/img/actions/add.svg @@ -1,6 +1,14 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <g transform="matrix(-.70711 -.70711 .70711 -.70711 -724.85 752.16)"> - <path d="m1.6361 1040.9 2.8284-2.8284 3.5355 3.5355 3.5355-3.5355 2.8284 2.8284-3.5355 3.5355 3.5356 3.5356-2.8284 2.8284-3.5356-3.5356-3.5357 3.5354-2.8281-2.8281 3.5354-3.5357z"/> + <metadata> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <dc:title/> + </cc:Work> + </rdf:RDF> + </metadata> + <g transform="matrix(-0.70711,-0.70711,0.70711,-0.70711,-724.84998,753.15998)"> + <path d="m3.7547,1041.6,1.4142-1.4142,3.5355,3.5355,3.5355-3.5355,1.4142,1.4142-3.5355,3.5355,3.5355,3.5356-1.4142,1.4142-3.5355-3.5356-3.5164,3.5547-1.4333-1.4333,3.5355-3.5356z"/> </g> </svg> -- GitLab From 378f79b2d9bb8d63956fd5855a0155115ee75b44 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Tue, 22 Apr 2014 11:37:30 +0200 Subject: [PATCH 114/187] improve delete and close icons --- core/img/actions/close.png | Bin 181 -> 206 bytes core/img/actions/close.svg | 14 +++++--- core/img/actions/delete.png | Bin 181 -> 205 bytes core/img/actions/delete.svg | 14 +++++--- core/img/actions/view-close.png | Bin 295 -> 317 bytes core/img/actions/view-close.svg | 57 +++++++++++++++++++++++++++++--- 6 files changed, 73 insertions(+), 12 deletions(-) diff --git a/core/img/actions/close.png b/core/img/actions/close.png index 3389c66e03b92db38d2ae6ffb41f1971d83c86bb..ece33258e5676951d9aa54ae634aa6948b0c0e4d 100644 GIT binary patch delta 160 zcmdnWc#d&`ga`*S0|SGGE`Kls1A|t8Pl)UP|Nkc%N=|g(n&`k%{VdqCi-CcGw<O3f zm_bxbTt;sFhHaNFU%C4CTIn7J1_n1z7srqa#$*Nl4I2!bG}8FORxn8Gs|U1nwojMU zI&gwhB=HFwx3bF)g_;(QmVV8K3x_(>Sd?ctY!cHs)Aq{1%}nf*4I6{hA11zZuf}T( P3=9mOu6{1-oD!M<RgX2` delta 138 zcmX@dxRr5&ga`{W0|Ud`yN`kx7#I`-d_r9R|NlSHP%is!K}t9S0|Qq{kY6wZmsWg2 z!~6wTzrHUCT*|<}VCm`N7{U>qoN$0Sf?HDJ2vY;kH&HI1SXKwN<m)NtMVS;V&xWp6 uYZTqMChBR!sRqx3qKCI0<~_p6u=BdW?Y#F#V;LA27(8A5T-G@yGywn&Kr&JQ diff --git a/core/img/actions/close.svg b/core/img/actions/close.svg index ef564bfd48..f538389f4b 100644 --- a/core/img/actions/close.svg +++ b/core/img/actions/close.svg @@ -1,6 +1,12 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <g transform="translate(0 -1036.4)"> - <path d="m3 1040.4 1-1 4 3 4-3 1 1-3 4 3 4-1 1-4-3-4 3-1-1 3-4z"/> - </g> + <metadata> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <dc:title/> + </cc:Work> + </rdf:RDF> + </metadata> + <path d="M12.95,11.536,11.536,12.95,8,9.4142,4.4645,12.95,3.0503,11.536,6.5858,8,3.0503,4.4644,4.4645,3.0502,8,6.5858,11.516,3.0311,12.95,4.4644,9.4143,8z" fill="#000"/> </svg> diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index 3389c66e03b92db38d2ae6ffb41f1971d83c86bb..096ffb50d151da90b33d818c3b415f4cacaf6d50 100644 GIT binary patch delta 147 zcmdnWc$RU33WrvJPl)UP|Nkc%N=|g(n&`k%^(@%4i-CcGw<O3fm_bxbTt;sFhHaNF zU%C4CTIn7J1_oD87sn8e>&XcRm?MNFC3Kh?c(%=E@=51z;5oKacxgUY!xNSKb#pnw zj#!8*H6(c4n`14gWDqE%!*b=Eg*ju^f*H(q+Kj)R3${%!+|t6pz`)??>gTe~DWM4f DjHNW@ delta 126 zcmX@hxRr5&3Ws8VPl)UP|Nkc%%4OdzNC{_PVBjhV@(X6*(uz-Ln7`oa*Y_oXOBom# zEInNuLpY+76Amy(a7#)YVQS#{Cd%a#%j&?Ed_Cp7D3gNa+0fN$jiMXZL_KXd)!=zh h^zhchyhk`0c3u~_o%jA|ECT}rgQu&X%Q~loCIEPuFH8Uc diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index ef564bfd48..f538389f4b 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,6 +1,12 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <g transform="translate(0 -1036.4)"> - <path d="m3 1040.4 1-1 4 3 4-3 1 1-3 4 3 4-1 1-4-3-4 3-1-1 3-4z"/> - </g> + <metadata> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <dc:title/> + </cc:Work> + </rdf:RDF> + </metadata> + <path d="M12.95,11.536,11.536,12.95,8,9.4142,4.4645,12.95,3.0503,11.536,6.5858,8,3.0503,4.4644,4.4645,3.0502,8,6.5858,11.516,3.0311,12.95,4.4644,9.4143,8z" fill="#000"/> </svg> diff --git a/core/img/actions/view-close.png b/core/img/actions/view-close.png index 8422b733466565267ab8be1627ebc1c988f3c12f..c21f6ee30e780f09554e76839c212e6cf3e34425 100644 GIT binary patch delta 230 zcmZ3^w3lgu3ae9qPl)S8L&J#<g7pm3@{cnxFo>1}`2{nChJ{B&Mn%WOB_yS!Wt3O^ z{`2?WvafgNGcYhr^>lFzskn7_VkF;T1s+z}Ywy^$-}%34?M9_6q2~-U=YKF+{DE-} zx6gm=hi|+WTZAnM+j9JxRBI{gFW<lY*W0=E4-5CRbfxRd$j5#cRFjLj!kVzM=x$r^ z@7>~$Y~K{TX8rvtVY;?>(ZqwTeYQ^oZ^Uuk7A}04Gymyh-~Dn;504v4)%9$teYd8F n#Z}P0i%EFK)u|lIA8~tL=iT?MK=cp;0|SGntDnm{r-UW|oP1@Q delta 214 zcmdnXw47;z3ae#+Pl)S8L(BRt0&;Q;3=BdgL4LsuOq?PrmO=Ri4gC|=9=rYe+uv_R zvELXN7`i=O978O6?@sdMYjzM|KAYn(W9z^FH)K4fG<5uuso8ugX#J(RTk<Y%pDXve z)45FkwULalbikk6Kbdmc4@_y4DihY4z^|$r-XNx`X|}*(?i1|`lc!h({GI9TwvaJ7 zj_tyst4lV14(bn&@k)NK99x`ullilL9@`qBu*uhETwAmzboOzh^SO3CKa1+usi*Db WzAT|Hy_|u8fx*+&&t;ucLK6TIc3UO@ diff --git a/core/img/actions/view-close.svg b/core/img/actions/view-close.svg index 1d5b1a9f49..b56e81b2da 100644 --- a/core/img/actions/view-close.svg +++ b/core/img/actions/view-close.svg @@ -1,6 +1,55 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="32" width="32" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <g transform="translate(0 -1020.4)"> - <path d="m6 1028.4 2-2 8 7 8-7 2 2-7 8 7 8-2 2-8-7-8 7-2-2 7-8z" fill="#fff"/> - </g> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + height="32" + width="32" + version="1.1" + id="svg2" + inkscape:version="0.48.4 r9939" + sodipodi:docname="view-close.svg"> + <metadata + id="metadata12"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs10" /> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1002" + id="namedview8" + showgrid="false" + inkscape:zoom="14.75" + inkscape:cx="-1.1088659" + inkscape:cy="17.154822" + inkscape:window-x="0" + inkscape:window-y="34" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" /> + <path + inkscape:connector-curvature="0" + d="m 23.071349,6.1012647 2.827764,2.8277646 -7.071292,7.0716937 7.071011,7.070411 -2.827877,2.828276 -7.07141,-7.070411 L 8.9286509,25.899692 6.1004861,23.071528 13.171381,16.000834 6.0625771,8.969416 8.9290523,6.1015409 15.999662,13.172352 z" + id="path6-3" + style="fill:#ffffff;fill-opacity:1" /> </svg> -- GitLab From e7e87f4d9f4bae9fa543f9f9cfc6d2f40204e3bd Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Tue, 22 Apr 2014 11:47:01 +0200 Subject: [PATCH 115/187] improve upload and download icons --- core/img/actions/download.png | Bin 162 -> 134 bytes core/img/actions/download.svg | 12 ++++++++++-- core/img/actions/upload.png | Bin 161 -> 144 bytes core/img/actions/upload.svg | 15 +++++++++++---- 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/core/img/actions/download.png b/core/img/actions/download.png index 0f71a5a776f1194b6a0a1adf01df4490e0cb2104..1f8e1a4f7e167efc019708a635eb763445dc255b 100644 GIT binary patch delta 116 zcmZ3)*v2?PGMAZwfk8u;KbV1mfiu7-#P$FG{|sPI7q~K(fq{XkB*-tAp<%YRp9BK~ zgO;a@V@L&K@&U#f4GsI4dVD+@1btfseR-8*#OLsfH+~dUGO%-EIdz<cA)uFG_9JcE QLm<OEUHx3vIVCg!0L<<n3IG5A delta 145 zcmZo;T*Np*vYw5BfkFQB|3n4`hD=Wv#}JFtdoOR~J)pqj5_tZAfzDwgbDq;F5@`jO z*kl#sCkFj#d&H?MGgC7DQ@h|(t>s*ds~EKyXE91KrZ5ODkX|7Cz~F#mLt?{57BS=Z zm)^1oOq6}7y6Cw14TWFN<t1D)W~#YVNPDX5S84zJ^|ksL0|OTWgQu&X%Q~loCIHzN BHJShb diff --git a/core/img/actions/download.svg b/core/img/actions/download.svg index a469c3b8a0..af1df1199d 100644 --- a/core/img/actions/download.svg +++ b/core/img/actions/download.svg @@ -1,6 +1,14 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <dc:title/> + </cc:Work> + </rdf:RDF> + </metadata> <g transform="translate(0 -1036.4)"> - <path d="m6 1037.4h4l1 7h4l-7 7-7-7h4z"/> + <path d="m6,1037.4,4,0,0,7,5,0-7,7-7-7,5,0z"/> </g> </svg> diff --git a/core/img/actions/upload.png b/core/img/actions/upload.png index f6a0c4cfa835dec886379ef770aff694e9d3a1b3..a6969c23fa6640726d3300a233ff15264c0b32c6 100644 GIT binary patch delta 126 zcmZ3;IDv73WH~bf1A~Sxe=q|B180Cwi0l9V{~5rbE^uWm0|Nt7NswPKL&I!sKM4i~ z1`|&g$B+uf<OU`;HxAzC#)gKAJ}N44*txJAbnj63v0|5ljeze;hB=(V4W9(O3b__A a`7km>ZDY8oci#CZ$XHKTKbLh*2~7Ye6(hO; delta 144 zcmbQhxR7yzWIY=L1B3kM|A`C?3>ls-jv*GO_g+58>mVr5@^G!A;jD{2NhXUWOxJjP zYf@}GlIW-Zzq~>qbn5iC_FYG|X&*@1>dGbYNViBzUr?=$L)!m@?;XX}^CKJrW(1#L zIKeZ4VZy&V%*;#-Ow1Jw6>J3z1z)mlB3a|tYX1yfWb>JUfq|33)78&qol`;+0GI1E A*#H0l diff --git a/core/img/actions/upload.svg b/core/img/actions/upload.svg index eae4515c72..b86c08c666 100644 --- a/core/img/actions/upload.svg +++ b/core/img/actions/upload.svg @@ -1,6 +1,13 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <g transform="translate(0 -1036.4)"> - <path d="m10 1051.4h-4l-1-7h-4l7-7 7 7h-4z"/> - </g> + <metadata> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <dc:title/> + </cc:Work> + </rdf:RDF> + </metadata> + <path d="M10,12,6,12,6,6,2,6,8,0,14,6,10,6z"/> + <path fill="#000" d="m0,11,0,5,16,0,0-5-2,0,0,3-12,0,0-3z"/> </svg> -- GitLab From efff7dd2a43b604bd883e4e0aca9a74e4bb81222 Mon Sep 17 00:00:00 2001 From: Tobia De Koninck <tobia@ledfan.be> Date: Tue, 22 Apr 2014 12:46:09 +0200 Subject: [PATCH 116/187] Change key to addressbook-key --- lib/private/contactsmanager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/contactsmanager.php b/lib/private/contactsmanager.php index 47ade48dcf..4299d88017 100644 --- a/lib/private/contactsmanager.php +++ b/lib/private/contactsmanager.php @@ -39,7 +39,7 @@ namespace OC { $r = $address_book->search($pattern, $searchProperties, $options); $contacts = array(); foreach($r as $c){ - $c['key'] = $address_book->getKey(); + $c['addressbook-key'] = $address_book->getKey(); $contacts[] = $c; } $result = array_merge($result, $contacts); -- GitLab From 6e857de6b71f92f3c23b5dab10d2372316f92ad7 Mon Sep 17 00:00:00 2001 From: Volkan Gezer <volkangezer@gmail.com> Date: Sat, 5 Apr 2014 19:23:12 +0200 Subject: [PATCH 117/187] Make lib/** share.php strings extractable for translation They were not ready for translation as they had no placeholders and/nor wrapper function to be translated This should fix: #8011 --- lib/private/share/share.php | 152 +++++++++++++++++++++--------------- 1 file changed, 89 insertions(+), 63 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7bab98b00b..bea0588271 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -426,6 +426,7 @@ class Share extends \OC\Share\Constants { public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null) { $uidOwner = \OC_User::getUser(); $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); + $l = \OC_L10N::get('lib'); if (is_null($itemSourceName)) { $itemSourceName = $itemSource; @@ -434,22 +435,25 @@ class Share extends \OC\Share\Constants { // Verify share type and sharing conditions are met if ($shareType === self::SHARE_TYPE_USER) { if ($shareWith == $uidOwner) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the item owner'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the user %s is the item owner'; + $message_t = $l->t('Sharing %s failed, because the user %s is the item owner', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } if (!\OC_User::userExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the user %s does not exist'; + $message_t = $l->t('Sharing %s failed, because the user %s does not exist', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } if ($sharingPolicy == 'groups_only') { $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); if (empty($inGroup)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user ' - .$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the user ' + .'%s is not a member of any groups that %s is a member of'; + $message_t = $l->t('Sharing %s failed, because the user %s is not a member of any groups that %s is a member of', array($itemSourceName, $shareWith, $uidOwner)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith, $uidOwner), \OC_Log::ERROR); + throw new \Exception($message_t); } } // Check if the item source is already shared with the user, either from the same owner or a different user @@ -459,22 +463,25 @@ class Share extends \OC\Share\Constants { // owner and is not a user share, this use case is for increasing // permissions for a specific user if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because this item is already shared with %s'; + $message_t = $l->t('Sharing %s failed, because this item is already shared with %s', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } } } else if ($shareType === self::SHARE_TYPE_GROUP) { if (!\OC_Group::groupExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the group '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the group %s does not exist'; + $message_t = $l->t('Sharing %s failed, because the group %s does not exist', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because ' - .$uidOwner.' is not a member of the group '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because ' + .'%s is not a member of the group %s'; + $message_t = $l->t('Sharing %s failed, because %s is not a member of the group %s', array($itemSourceName, $uidOwner, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $uidOwner, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } // Check if the item source is already shared with the group, either from the same owner or a different user // The check for each user in the group is done inside the put() function @@ -484,9 +491,10 @@ class Share extends \OC\Share\Constants { // owner and is not a group share, this use case is for increasing // permissions for a specific user if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because this item is already shared with %s'; + $message_t = $l->t('Sharing %s failed, because this item is already shared with %s', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } } // Convert share with into an array with the keys group and users @@ -533,15 +541,17 @@ class Share extends \OC\Share\Constants { return false; } } - $message = 'Sharing '.$itemSourceName.' failed, because sharing with links is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because sharing with links is not allowed'; + $message_t = $l->t('Sharing %s failed, because sharing with links is not allowed', array($itemSourceName)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName), \OC_Log::ERROR); + throw new \Exception($message_t); return false; } else { // Future share types need to include their own conditions - $message = 'Share type '.$shareType.' is not valid for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Share type %s is not valid for %s'; + $message_t = $l->t('Share type %s is not valid for %s', array($shareType, $itemSource)); + \OC_Log::write('OCP\Share', sprintf($message, $shareType, $itemSource), \OC_Log::ERROR); + throw new \Exception($message_t); } // Put the item into the database return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); @@ -665,6 +675,7 @@ class Share extends \OC\Share\Constants { * @return Returns true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { + $l = \OC_L10N::get('lib'); if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { // Check if this item is a reshare and verify that the permissions @@ -673,10 +684,11 @@ class Share extends \OC\Share\Constants { $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); $result = $query->execute(array($item['parent']))->fetchRow(); if (~(int)$result['permissions'] & $permissions) { - $message = 'Setting permissions for '.$itemSource.' failed,' - .' because the permissions exceed permissions granted to '.\OC_User::getUser(); - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Setting permissions for %s failed,' + .' because the permissions exceed permissions granted to %s'; + $message_t = $l->t('Setting permissions for %s failed, because the permissions exceed permissions granted to %s', array($itemSource, \OC_User::getUser())); + \OC_Log::write('OCP\Share', sprintf($message, $itemSource, \OC_User::getUser()), \OC_Log::ERROR); + throw new \Exception($message_t); } } $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); @@ -734,9 +746,11 @@ class Share extends \OC\Share\Constants { } return true; } - $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Setting permissions for %s failed, because the item was not found'; + $message_t = $l->t('Setting permissions for %s failed, because the item was not found', array($itemSource)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSource), \OC_Log::ERROR); + throw new \Exception($message_t); } /** @@ -818,6 +832,7 @@ class Share extends \OC\Share\Constants { * @return \OCP\Share_Backend */ public static function getBackend($itemType) { + $l = \OC_L10N::get('lib'); if (isset(self::$backends[$itemType])) { return self::$backends[$itemType]; } else if (isset(self::$backendTypes[$itemType]['class'])) { @@ -825,20 +840,23 @@ class Share extends \OC\Share\Constants { if (class_exists($class)) { self::$backends[$itemType] = new $class; if (!(self::$backends[$itemType] instanceof \OCP\Share_Backend)) { - $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing backend %s must implement the interface OCP\Share_Backend'; + $message_t = $l->t('Sharing backend %s must implement the interface OCP\Share_Backend', array($class)); + \OC_Log::write('OCP\Share', sprintf($message, $class), \OC_Log::ERROR); + throw new \Exception($message_t); } return self::$backends[$itemType]; } else { - $message = 'Sharing backend '.$class.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing backend %s not found'; + $message_t = $l->t('Sharing backend %s not found', array($class)); + \OC_Log::write('OCP\Share', sprintf($message, $class), \OC_Log::ERROR); + throw new \Exception($message_t); } } - $message = 'Sharing backend for '.$itemType.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing backend for %s not found'; + $message_t = $l->t('Sharing backend for %s not found', array($itemType)); + \OC_Log::write('OCP\Share', sprintf($message, $itemType), \OC_Log::ERROR); + throw new \Exception($message_t); } /** @@ -1246,23 +1264,26 @@ class Share extends \OC\Share\Constants { private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null, $token = null, $itemSourceName = null) { $backend = self::getBackend($itemType); - + $l = \OC_L10N::get('lib'); // Check if this is a reshare if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { // Check if attempting to share back to owner if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the original sharer'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the user %s is the original sharer'; + $message_t = $l->t('Sharing %s failed, because the user %s is the original sharer', array($itemSourceName, $shareWith)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } // Check if share permissions is granted if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & \OCP\PERMISSION_SHARE) { if (~(int)$checkReshare['permissions'] & $permissions) { - $message = 'Sharing '.$itemSourceName - .' failed, because the permissions exceed permissions granted to '.$uidOwner; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the permissions exceed permissions granted to %s'; + $message_t = $l->t('Sharing %s failed, because the permissions exceed permissions granted to %s', array($itemSourceName, $uidOwner)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $uidOwner), \OC_Log::ERROR); + throw new \Exception($message_t); } else { // TODO Don't check if inside folder $parent = $checkReshare['id']; @@ -1273,19 +1294,22 @@ class Share extends \OC\Share\Constants { $filePath = $checkReshare['file_target']; } } else { - $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because resharing is not allowed'; + $message_t = $l->t('Sharing %s failed, because resharing is not allowed', array($itemSourceName)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName), \OC_Log::ERROR); + throw new \Exception($message_t); } } else { $parent = null; $suggestedItemTarget = null; $suggestedFileTarget = null; if (!$backend->isValidSource($itemSource, $uidOwner)) { - $message = 'Sharing '.$itemSource.' failed, because the sharing backend for ' - .$itemType.' could not find its source'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the sharing backend for ' + .'%s could not find its source'; + $message_t = $l->t('Sharing %s failed, because the sharing backend for %s could not find its source', array($itemSource, $itemType)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSource, $itemType), \OC_Log::ERROR); + throw new \Exception($message_t); } if ($backend instanceof \OCP\Share_Backend_File_Dependent) { $filePath = $backend->getFilePath($itemSource, $uidOwner); @@ -1296,9 +1320,11 @@ class Share extends \OC\Share\Constants { $fileSource = $meta['fileid']; } if ($fileSource == -1) { - $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the file could not be found in the file cache'; + $message_t = $l->t('Sharing %s failed, because the file could not be found in the file cache', array($itemSource)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSource), \OC_Log::ERROR); + throw new \Exception($message_t); } } else { $filePath = null; -- GitLab From b42ce6c30a214c7089a84eb9c22c0bd576a15fe7 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Tue, 22 Apr 2014 15:24:38 +0200 Subject: [PATCH 118/187] Prevent error if previously cached data doesn't have an etag --- apps/files_encryption/tests/webdav.php | 1 + lib/private/files/cache/scanner.php | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/files_encryption/tests/webdav.php b/apps/files_encryption/tests/webdav.php index 1f23be3e79..1fe4c13d59 100755 --- a/apps/files_encryption/tests/webdav.php +++ b/apps/files_encryption/tests/webdav.php @@ -247,6 +247,7 @@ class Test_Encryption_Webdav extends \PHPUnit_Framework_TestCase { $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin($view)); $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); + $server->debugExceptions = true; // And off we go! if ($body) { diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php index 79159724d1..c0bdde06a7 100644 --- a/lib/private/files/cache/scanner.php +++ b/lib/private/files/cache/scanner.php @@ -115,11 +115,12 @@ class Scanner extends BasicEmitter { } if ($reuseExisting) { // prevent empty etag - $etag = $cacheData['etag']; - $propagateETagChange = false; - if (empty($etag)) { + if (empty($cacheData['etag'])) { $etag = $data['etag']; $propagateETagChange = true; + } else { + $etag = $cacheData['etag']; + $propagateETagChange = false; } // only reuse data if the file hasn't explicitly changed if (isset($data['storage_mtime']) && isset($cacheData['storage_mtime']) && $data['storage_mtime'] === $cacheData['storage_mtime']) { -- GitLab From 1c71d5c444a0f4b2263ffb1d2a40969880151015 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Wed, 16 Apr 2014 12:56:08 +0200 Subject: [PATCH 119/187] LDAP: cache display names immediately on retrieval, saves tens of unecessary queries to LDAP server in the share dialog for example --- apps/user_ldap/lib/access.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 8d622dcb79..d047149fc7 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -434,12 +434,18 @@ class Access extends LDAPUtility { $ocname = $this->dn2ocname($ldapObject['dn'], $nameByLDAP, $isUsers); if($ocname) { $ownCloudNames[] = $ocname; + $this->cacheDisplayName($ocname, $nameByLDAP); } continue; } return $ownCloudNames; } + public function cacheDisplayName($uid, $displayName) { + $cacheKeyTrunk = 'getDisplayName'; + $this->connection->writeToCache($cacheKeyTrunk.$uid,$displayName); + } + /** * @brief creates a unique name for internal ownCloud use for users. Don't call it directly. * @param $name the display name of the object -- GitLab From c1c2f2c49e4d30a7bd039837661af143054b6769 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Wed, 16 Apr 2014 17:16:51 +0200 Subject: [PATCH 120/187] add additional comments, PHPdoc and check whether it's really applicable --- apps/user_ldap/lib/access.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index d047149fc7..aea5026ea6 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -434,16 +434,25 @@ class Access extends LDAPUtility { $ocname = $this->dn2ocname($ldapObject['dn'], $nameByLDAP, $isUsers); if($ocname) { $ownCloudNames[] = $ocname; - $this->cacheDisplayName($ocname, $nameByLDAP); + if($isUsers) { + //cache the user names so it does not need to be retrieved + //again later (e.g. sharing dialogue). + $this->cacheUserDisplayName($ocname, $nameByLDAP); + } } continue; } return $ownCloudNames; } - public function cacheDisplayName($uid, $displayName) { + /** + * @brief caches the user display name + * @param string the internal owncloud username + * @param string the display name + */ + public function cacheUserDisplayName($ocname, $displayName) { $cacheKeyTrunk = 'getDisplayName'; - $this->connection->writeToCache($cacheKeyTrunk.$uid,$displayName); + $this->connection->writeToCache($cacheKeyTrunk.$ocname, $displayName); } /** -- GitLab From f07180639c5af149447bc573db58ee130575369e Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Tue, 22 Apr 2014 20:09:55 +0200 Subject: [PATCH 121/187] Add unit tests for arrays and " OC_Util::sanitizeHTML() also supports array but we actually had no unit test for it. Additionally this commit introduces a test for escaping " into " --- tests/lib/template.php | 18 ++++++++++++++---- tests/lib/util.php | 28 +++++++++++++++++++++++----- 2 files changed, 37 insertions(+), 9 deletions(-) diff --git a/tests/lib/template.php b/tests/lib/template.php index b4f1a4c405..b3d0975b79 100644 --- a/tests/lib/template.php +++ b/tests/lib/template.php @@ -28,13 +28,23 @@ class Test_TemplateFunctions extends PHPUnit_Framework_TestCase { } public function testP() { - // FIXME: do we need more testcases? - $htmlString = "<script>alert('xss');</script>"; + $badString = '<img onload="alert(1)" />'; + ob_start(); + p($badString); + $result = ob_get_clean(); + $this->assertEquals('<img onload="alert(1)" />', $result); + + $badString = "<script>alert('Hacked!');</script>"; ob_start(); - p($htmlString); + p($badString); $result = ob_get_clean(); + $this->assertEquals('<script>alert('Hacked!');</script>', $result); - $this->assertEquals("<script>alert('xss');</script>", $result); + $goodString = 'This is a good string without HTML.'; + ob_start(); + p($goodString); + $result = ob_get_clean(); + $this->assertEquals('This is a good string without HTML.', $result); } public function testPNormalString() { diff --git a/tests/lib/util.php b/tests/lib/util.php index ee336aa111..20f2f7bbea 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -43,15 +43,33 @@ class Test_Util extends PHPUnit_Framework_TestCase { } function testSanitizeHTML() { + $badArray = array( + 'While it is unusual to pass an array', + 'this function actually <blink>supports</blink> it.', + 'And therefore there needs to be a <script>alert("Unit"+\'test\')</script> for it!' + ); + $goodArray = array( + 'While it is unusual to pass an array', + 'this function actually <blink>supports</blink> it.', + 'And therefore there needs to be a <script>alert("Unit"+'test')</script> for it!' + ); + $result = OC_Util::sanitizeHTML($badArray); + $this->assertEquals($goodArray, $result); + + $badString = '<img onload="alert(1)" />'; + $result = OC_Util::sanitizeHTML($badString); + $this->assertEquals('<img onload="alert(1)" />', $result); + $badString = "<script>alert('Hacked!');</script>"; $result = OC_Util::sanitizeHTML($badString); - $this->assertEquals("<script>alert('Hacked!');</script>", $result); + $this->assertEquals('<script>alert('Hacked!');</script>', $result); - $goodString = "This is an harmless string."; + $goodString = 'This is a good string without HTML.'; $result = OC_Util::sanitizeHTML($goodString); - $this->assertEquals("This is an harmless string.", $result); - } - + $this->assertEquals('This is a good string without HTML.', $result); +} + + function testEncodePath(){ $component = '/§#@test%&^ä/-child'; $result = OC_Util::encodePath($component); -- GitLab From 589c74e1761f7450d7aabb0f5cf8391f89c3847d Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Tue, 22 Apr 2014 20:10:46 +0200 Subject: [PATCH 122/187] Fix indentation --- tests/lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/util.php b/tests/lib/util.php index 20f2f7bbea..4c0ed92038 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -67,7 +67,7 @@ class Test_Util extends PHPUnit_Framework_TestCase { $goodString = 'This is a good string without HTML.'; $result = OC_Util::sanitizeHTML($goodString); $this->assertEquals('This is a good string without HTML.', $result); -} + } function testEncodePath(){ -- GitLab From 9d3b639ce68b1b60845b7bf605f16292fd0a6019 Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Tue, 22 Apr 2014 20:11:34 +0200 Subject: [PATCH 123/187] Remove uneeded newline --- tests/lib/util.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/lib/util.php b/tests/lib/util.php index 4c0ed92038..c4780cc5f4 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -69,7 +69,6 @@ class Test_Util extends PHPUnit_Framework_TestCase { $this->assertEquals('This is a good string without HTML.', $result); } - function testEncodePath(){ $component = '/§#@test%&^ä/-child'; $result = OC_Util::encodePath($component); -- GitLab From ce835a32478e9a8ed7dd83443db699ed11b39fd7 Mon Sep 17 00:00:00 2001 From: Volkan Gezer <volkangezer@gmail.com> Date: Wed, 23 Apr 2014 00:07:00 +0200 Subject: [PATCH 124/187] add uncompressed jquery files - fixes #8294 --- core/js/jquery-1.10.0.js | 9800 +++++++++++++++++++++++++++++++ core/js/jquery-migrate-1.2.1.js | 521 ++ 2 files changed, 10321 insertions(+) create mode 100644 core/js/jquery-1.10.0.js create mode 100644 core/js/jquery-migrate-1.2.1.js diff --git a/core/js/jquery-1.10.0.js b/core/js/jquery-1.10.0.js new file mode 100644 index 0000000000..f38148cf12 --- /dev/null +++ b/core/js/jquery-1.10.0.js @@ -0,0 +1,9800 @@ +/*! + * jQuery JavaScript Library v1.10.0 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2013-05-24T18:39Z + */ +(function( window, undefined ) { + +// Can't do this because several apps including ASP.NET trace +// the stack via arguments.caller.callee and Firefox dies if +// you try to trace through "use strict" call chains. (#13335) +// Support: Firefox 18+ +//"use strict"; +var + // The deferred used on DOM ready + readyList, + + // A central reference to the root jQuery(document) + rootjQuery, + + // Support: IE<10 + // For `typeof xmlNode.method` instead of `xmlNode.method !== undefined` + core_strundefined = typeof undefined, + + // Use the correct document accordingly with window argument (sandbox) + location = window.location, + document = window.document, + docElem = document.documentElement, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // [[Class]] -> type pairs + class2type = {}, + + // List of deleted data cache ids, so we can reuse them + core_deletedIds = [], + + core_version = "1.10.0", + + // Save a reference to some core methods + core_concat = core_deletedIds.concat, + core_push = core_deletedIds.push, + core_slice = core_deletedIds.slice, + core_indexOf = core_deletedIds.indexOf, + core_toString = class2type.toString, + core_hasOwn = class2type.hasOwnProperty, + core_trim = core_version.trim, + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Used for matching numbers + core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, + + // Used for splitting on whitespace + core_rnotwhite = /\S+/g, + + // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // A simple way to check for HTML strings + // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, + rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }, + + // The ready event handler + completed = function( event ) { + + // readyState === "complete" is good enough for us to call the dom ready in oldIE + if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { + detach(); + jQuery.ready(); + } + }, + // Clean-up method for dom ready events + detach = function() { + if ( document.addEventListener ) { + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); + + } else { + document.detachEvent( "onreadystatechange", completed ); + window.detachEvent( "onload", completed ); + } + }; + +jQuery.fn = jQuery.prototype = { + // The current version of jQuery being used + jquery: core_version, + + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + + // scripts is true for back-compat + jQuery.merge( this, jQuery.parseHTML( + match[1], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return core_slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; + }, + + slice: function() { + return this.pushStack( core_slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: core_push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var src, copyIsArray, copy, name, options, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), + + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger("ready").off("ready"); + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + isWindow: function( obj ) { + /* jshint eqeqeq: false */ + return obj != null && obj == obj.window; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + if ( obj == null ) { + return String( obj ); + } + return typeof obj === "object" || typeof obj === "function" ? + class2type[ core_toString.call(obj) ] || "object" : + typeof obj; + }, + + isPlainObject: function( obj ) { + var key; + + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !core_hasOwn.call(obj, "constructor") && + !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Support: IE<9 + // Handle iteration over inherited properties before own properties. + if ( jQuery.support.ownLast ) { + for ( key in obj ) { + return core_hasOwn.call( obj, key ); + } + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + for ( key in obj ) {} + + return key === undefined || core_hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + // data: string of html + // context (optional): If specified, the fragment will be created in this context, defaults to document + // keepScripts (optional): If true, will include scripts passed in the html string + parseHTML: function( data, context, keepScripts ) { + if ( !data || typeof data !== "string" ) { + return null; + } + if ( typeof context === "boolean" ) { + keepScripts = context; + context = false; + } + context = context || document; + + var parsed = rsingleTag.exec( data ), + scripts = !keepScripts && []; + + // Single tag + if ( parsed ) { + return [ context.createElement( parsed[1] ) ]; + } + + parsed = jQuery.buildFragment( [ data ], context, scripts ); + if ( scripts ) { + jQuery( scripts ).remove(); + } + return jQuery.merge( [], parsed.childNodes ); + }, + + parseJSON: function( data ) { + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + if ( data === null ) { + return data; + } + + if ( typeof data === "string" ) { + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + if ( data ) { + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + } + } + } + + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + if ( !data || typeof data !== "string" ) { + return null; + } + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && jQuery.trim( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var value, + i = 0, + length = obj.length, + isArray = isArraylike( obj ); + + if ( args ) { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } + } + + return obj; + }, + + // Use native String.trim function wherever possible + trim: core_trim && !core_trim.call("\uFEFF\xA0") ? + function( text ) { + return text == null ? + "" : + core_trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArraylike( Object(arr) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + core_push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + var len; + + if ( arr ) { + if ( core_indexOf ) { + return core_indexOf.call( arr, elem, i ); + } + + len = arr.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in arr && arr[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var l = second.length, + i = first.length, + j = 0; + + if ( typeof l === "number" ) { + for ( ; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var retVal, + ret = [], + i = 0, + length = elems.length; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, + i = 0, + length = elems.length, + isArray = isArraylike( elems ), + ret = []; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return core_concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var args, proxy, tmp; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = core_slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + // Multifunctional method to get and set values of a collection + // The value/s can optionally be executed if it's a function + access: function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + length = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < length; i++ ) { + fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); + } + } + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + length ? fn( elems[0], key ) : emptyGet; + }, + + now: function() { + return ( new Date() ).getTime(); + }, + + // A method for quickly swapping in/out CSS properties to get correct calculations. + // Note: this method belongs to the css module but it's needed here for the support module. + // If support gets modularized, this method should be moved back to the css module. + swap: function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; + } +}); + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // we once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready ); + + // Standards-based browsers support DOMContentLoaded + } else if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed, false ); + + // If IE event model is used + } else { + // Ensure firing before onload, maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", completed ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", completed ); + + // If IE and not a frame + // continually check to see if the document is ready + var top = false; + + try { + top = window.frameElement == null && document.documentElement; + } catch(e) {} + + if ( top && top.doScroll ) { + (function doScrollCheck() { + if ( !jQuery.isReady ) { + + try { + // Use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + top.doScroll("left"); + } catch(e) { + return setTimeout( doScrollCheck, 50 ); + } + + // detach all dom ready events + detach(); + + // and execute any waiting functions + jQuery.ready(); + } + })(); + } + } + } + return readyList.promise( obj ); +}; + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +function isArraylike( obj ) { + var length = obj.length, + type = jQuery.type( obj ); + + if ( jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.nodeType === 1 && length ) { + return true; + } + + return type === "array" || type !== "function" && + ( length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj ); +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); +/*! + * Sizzle CSS Selector Engine v1.9.4-pre + * http://sizzlejs.com/ + * + * Copyright 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2013-05-15 + */ +(function( window, undefined ) { + +var i, + support, + cachedruns, + Expr, + getText, + isXML, + compile, + outermostContext, + sortInput, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + -(new Date()), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + hasDuplicate = false, + sortOrder = function() { return 0; }, + + // General-purpose constants + strundefined = typeof undefined, + MAX_NEGATIVE = 1 << 31, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf if we can't use a native one + indexOf = arr.indexOf || function( elem ) { + var i = 0, + len = this.length; + for ( ; i < len; i++ ) { + if ( this[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + + "*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", + + // Prefer arguments quoted, + // then not containing pseudos/brackets, + // then attribute selectors/non-parenthetical expressions, + // then anything else + // These preferences are here to reduce the number of selectors + // needing tokenize in the PSEUDO preFilter + pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rsibling = new RegExp( whitespace + "*[+~]" ), + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rescape = /'|\\/g, + + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + // BMP codepoint + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }; + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var match, elem, m, nodeType, + // QSA vars + i, groups, old, nid, newContext, newSelector; + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + + context = context || document; + results = results || []; + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { + return []; + } + + if ( documentIsHTML && !seed ) { + + // Shortcuts + if ( (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // QSA path + if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + nid = old = expando; + newContext = context; + newSelector = nodeType === 9 && selector; + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); + + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; + + i = groups.length; + while ( i-- ) { + groups[i] = nid + toSelector( groups[i] ); + } + newContext = rsibling.test( selector ) && context.parentNode || context; + newSelector = groups.join(","); + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * For feature detection + * @param {Function} fn The function to test for native support + */ +function isNative( fn ) { + return rnative.test( fn + "" ); +} + +/** + * Create key-value caches of limited size + * @returns {Function(string, Object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key += " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created div and expects a boolean result + */ +function assert( fn ) { + var div = document.createElement("div"); + + try { + return !!fn( div ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( div.parentNode ) { + div.parentNode.removeChild( div ); + } + // release memory in IE + div = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied if the test fails + * @param {Boolean} test The result of a test. If true, null will be set as the handler in leiu of the specified handler + */ +function addHandle( attrs, handler, test ) { + attrs = attrs.split("|"); + var current, + i = attrs.length, + setHandle = test ? null : handler; + + while ( i-- ) { + // Don't override a user's handler + if ( !(current = Expr.attrHandle[ attrs[i] ]) || current === handler ) { + Expr.attrHandle[ attrs[i] ] = setHandle; + } + } +} + +/** + * Fetches boolean attributes by node + * @param {Element} elem + * @param {String} name + */ +function boolHandler( elem, name ) { + // XML does not need to be checked as this will not be assigned for XML documents + var val = elem.getAttributeNode( name ); + return val && val.specified ? + val.value : + elem[ name ] === true ? name.toLowerCase() : null; +} + +/** + * Fetches attributes without interpolation + * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx + * @param {Element} elem + * @param {String} name + */ +function interpolationHandler( elem, name ) { + // XML does not need to be checked as this will not be assigned for XML documents + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); +} + +/** + * Uses defaultValue to retrieve value in IE6/7 + * @param {Element} elem + * @param {String} name + */ +function valueHandler( elem ) { + // Ignore the value *property* on inputs by using defaultValue + // Fallback to Sizzle.attr by returning undefined where appropriate + // XML does not need to be checked as this will not be assigned for XML documents + if ( elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns Returns -1 if a precedes b, 1 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + ( ~b.sourceIndex || MAX_NEGATIVE ) - + ( ~a.sourceIndex || MAX_NEGATIVE ); + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Detect xml + * @param {Element|Object} elem An element or a document + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var doc = node ? node.ownerDocument || node : preferredDoc; + + // If no document and documentElement is available, return + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Set our document + document = doc; + docElem = doc.documentElement; + + // Support tests + documentIsHTML = !isXML( doc ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans) + support.attributes = assert(function( div ) { + + // Support: IE<8 + // Prevent attribute/property "interpolation" + div.innerHTML = "<a href='#'></a>"; + addHandle( "type|href|height|width", interpolationHandler, div.firstChild.getAttribute("href") === "#" ); + + // Support: IE<9 + // Use getAttributeNode to fetch booleans when getAttribute lies + addHandle( booleans, boolHandler, div.getAttribute("disabled") == null ); + + div.className = "i"; + return !div.getAttribute("className"); + }); + + // Support: IE<9 + // Retrieving value should defer to defaultValue + support.input = assert(function( div ) { + div.innerHTML = "<input>"; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; + }); + + // IE6/7 still return empty string for value, + // but are actually retrieving the property + addHandle( "value", valueHandler, support.attributes && support.input ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( div ) { + div.appendChild( doc.createComment("") ); + return !div.getElementsByTagName("*").length; + }); + + // Check if getElementsByClassName can be trusted + support.getElementsByClassName = assert(function( div ) { + div.innerHTML = "<div class='a'></div><div class='a i'></div>"; + + // Support: Safari<4 + // Catch class over-caching + div.firstChild.className = "i"; + // Support: Opera<10 + // Catch gEBCN failure to find non-leading classes + return div.getElementsByClassName("i").length === 2; + }); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( div ) { + docElem.appendChild( div ).id = expando; + return !doc.getElementsByName || !doc.getElementsByName( expando ).length; + }); + + // ID find and filter + if ( support.getById ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== strundefined && documentIsHTML ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + } else { + // Support: IE6/7 + // getElementById is not reliable as a find shortcut + delete Expr.find["ID"]; + + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== strundefined ) { + return context.getElementsByTagName( tag ); + } + } : + function( tag, context ) { + var elem, + tmp = [], + i = 0, + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See http://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = isNative(doc.querySelectorAll)) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + div.innerHTML = "<select><option selected=''></option></select>"; + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + }); + + assert(function( div ) { + + // Support: Opera 10-12/IE8 + // ^= $= *= and empty values + // Should not select anything + // Support: Windows 8 Native Apps + // The type attribute is restricted during .innerHTML assignment + var input = doc.createElement("input"); + input.setAttribute( "type", "hidden" ); + div.appendChild( input ).setAttribute( "t", "" ); + + if ( div.querySelectorAll("[t^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + div.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = isNative( (matches = docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( div, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + + // Element contains another + // Purposefully does not implement inclusive descendent + // As in, an element does not contain itself + contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) + // Detached nodes confoundingly follow *each other* + support.sortDetached = assert(function( div1 ) { + // Should return 1, but returns 4 (following) + return div1.compareDocumentPosition( doc.createElement("div") ) & 1; + }); + + // Document order sorting + sortOrder = docElem.compareDocumentPosition ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b ); + + if ( compare ) { + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === doc || contains(preferredDoc, a) ) { + return -1; + } + if ( b === doc || contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } + + // Not directly comparable, sort on existence of method + return a.compareDocumentPosition ? -1 : 1; + } : + function( a, b ) { + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Parentless nodes are either documents or disconnected + } else if ( !aup || !bup ) { + return a === doc ? -1 : + b === doc ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return doc; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch(e) {} + } + + return Sizzle( expr, document, null, [elem] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = ( fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined ); + + return val === undefined ? + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null : + val; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + for ( ; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (see #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[5] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] && match[4] !== undefined ) { + match[2] = match[4]; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, outerCache, node, diff, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + // Seek `elem` from a previously-cached index + outerCache = parent[ expando ] || (parent[ expando ] = {}); + cache = outerCache[ type ] || []; + nodeIndex = cache[0] === dirruns && cache[1]; + diff = cache[0] === dirruns && cache[2]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + // Use previously-cached element index if available + } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { + diff = cache[1]; + + // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) + } else { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { + // Cache the index of each encountered element + if ( useCache ) { + (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf.call( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), + // not comment, processing instructions, or others + // Thanks to Diego Perini for the nodeName shortcut + // Greater than "@" means alpha characters (specifically not starting with "#" or "?") + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +function tokenize( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( tokens = [] ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +} + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var data, cache, outerCache, + dirkey = dirruns + " " + doneName; + + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { + if ( (data = cache[1]) === true || data === cachedruns ) { + return data === true; + } + } else { + cache = outerCache[ dir ] = [ dirkey ]; + cache[1] = matcher( elem, context, xml ) || cachedruns; + if ( cache[1] === true ) { + return true; + } + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf.call( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + // A counter to specify which element is currently being matched + var matcherCachedRuns = 0, + bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, expandContext ) { + var elem, j, matcher, + setMatched = [], + matchedCount = 0, + i = "0", + unmatched = seed && [], + outermost = expandContext != null, + contextBackup = outermostContext, + // We must always have either seed elements or context + elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1); + + if ( outermost ) { + outermostContext = context !== document && context; + cachedruns = matcherCachedRuns; + } + + // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below + for ( ; (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + cachedruns = ++matcherCachedRuns; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // Apply set filters to unmatched elements + matchedCount += i; + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !group ) { + group = tokenize( selector ); + } + i = group.length; + while ( i-- ) { + cached = matcherFromTokens( group[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + } + return cached; +}; + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function select( selector, context, results, seed ) { + var i, tokens, token, type, find, + match = tokenize( selector ); + + if ( !seed ) { + // Try to minimize operations if there is only one group + if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + support.getById && context.nodeType === 9 && documentIsHTML && + Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + } + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && context.parentNode || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + } + + // Compile and execute a filtering function + // Provide `match` to avoid retokenization if we modified the selector above + compile( selector, match )( + seed, + context, + !documentIsHTML, + results, + rsibling.test( selector ) + ); + return results; +} + +// Deprecated +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Initialize against the default document +setDocument(); + +// Support: Chrome<<14 +// Always assume duplicates if they aren't passed to the comparison function +[0, 0].sort( sortOrder ); +support.detectDuplicates = hasDuplicate; + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})( window ); +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // First callback to fire (used internally by add and fireWith) + firingStart, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); + }, + // Remove all callbacks from the list + empty: function() { + list = []; + firingLength = 0; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( list && ( !fired || stack ) ) { + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var action = tuple[ 0 ], + fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ](function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); + } + }); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] + deferred[ tuple[0] ] = function() { + deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); + return this; + }; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = core_slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; + if( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // if we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); +jQuery.support = (function( support ) { + + var all, a, input, select, fragment, opt, eventName, isSupported, i, + div = document.createElement("div"); + + // Setup + div.setAttribute( "className", "t" ); + div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; + + // Finish early in limited (non-browser) environments + all = div.getElementsByTagName("*") || []; + a = div.getElementsByTagName("a")[ 0 ]; + if ( !a || !a.style || !all.length ) { + return support; + } + + // First batch of tests + select = document.createElement("select"); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName("input")[ 0 ]; + + a.style.cssText = "top:1px;float:left;opacity:.5"; + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + support.getSetAttribute = div.className !== "t"; + + // IE strips leading whitespace when .innerHTML is used + support.leadingWhitespace = div.firstChild.nodeType === 3; + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + support.tbody = !div.getElementsByTagName("tbody").length; + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + support.htmlSerialize = !!div.getElementsByTagName("link").length; + + // Get the style information from getAttribute + // (IE uses .cssText instead) + support.style = /top/.test( a.getAttribute("style") ); + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + support.hrefNormalized = a.getAttribute("href") === "/a"; + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + support.opacity = /^0.5/.test( a.style.opacity ); + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + support.cssFloat = !!a.style.cssFloat; + + // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) + support.checkOn = !!input.value; + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + support.optSelected = opt.selected; + + // Tests for enctype support on a form (#6743) + support.enctype = !!document.createElement("form").enctype; + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + support.html5Clone = document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>"; + + // Will be defined later + support.inlineBlockNeedsLayout = false; + support.shrinkWrapBlocks = false; + support.pixelPosition = false; + support.deleteExpando = true; + support.noCloneEvent = true; + support.reliableMarginRight = true; + support.boxSizingReliable = true; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Support: IE<9 + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + // Check if we can trust getAttribute("value") + input = document.createElement("input"); + input.setAttribute( "value", "" ); + support.input = input.getAttribute( "value" ) === ""; + + // Check if an input maintains its value after becoming a radio + input.value = "t"; + input.setAttribute( "type", "radio" ); + support.radioValue = input.value === "t"; + + // #11217 - WebKit loses check when the name is after the checked attribute + input.setAttribute( "checked", "t" ); + input.setAttribute( "name", "t" ); + + fragment = document.createDocumentFragment(); + fragment.appendChild( input ); + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<9 + // Opera does not clone events (and typeof div.attachEvent === undefined). + // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() + if ( div.attachEvent ) { + div.attachEvent( "onclick", function() { + support.noCloneEvent = false; + }); + + div.cloneNode( true ).click(); + } + + // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) + // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) + for ( i in { submit: true, change: true, focusin: true }) { + div.setAttribute( eventName = "on" + i, "t" ); + + support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; + } + + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + // Support: IE<9 + // Iteration over object's inherited properties before its own. + for ( i in jQuery( support ) ) { + break; + } + support.ownLast = i !== "0"; + + // Run tests that need a body at doc ready + jQuery(function() { + var container, marginDiv, tds, + divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + container = document.createElement("div"); + container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; + + body.appendChild( container ).appendChild( div ); + + // Support: IE8 + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>"; + tds = div.getElementsByTagName("td"); + tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Support: IE8 + // Check if empty table cells still have offsetWidth/Height + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Check box-sizing and margin behavior. + div.innerHTML = ""; + div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; + + // Workaround failing boxSizing test due to offsetWidth returning wrong value + // with some non-1 values of body zoom, ticket #13543 + jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() { + support.boxSizing = div.offsetWidth === 4; + }); + + // Use window.getComputedStyle because jsdom on node.js will break without it. + if ( window.getComputedStyle ) { + support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; + support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. (#3333) + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + marginDiv = div.appendChild( document.createElement("div") ); + marginDiv.style.cssText = div.style.cssText = divReset; + marginDiv.style.marginRight = marginDiv.style.width = "0"; + div.style.width = "1px"; + + support.reliableMarginRight = + !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); + } + + if ( typeof div.style.zoom !== core_strundefined ) { + // Support: IE<8 + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + div.innerHTML = ""; + div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); + + // Support: IE6 + // Check if elements with layout shrink-wrap their children + div.style.display = "block"; + div.innerHTML = "<div></div>"; + div.firstChild.style.width = "5px"; + support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); + + if ( support.inlineBlockNeedsLayout ) { + // Prevent IE 6 from affecting layout for positioned elements #11048 + // Prevent IE from shrinking the body in IE 7 mode #12869 + // Support: IE<8 + body.style.zoom = 1; + } + } + + body.removeChild( container ); + + // Null elements to avoid leaks in IE + container = div = tds = marginDiv = null; + }); + + // Null elements to avoid leaks in IE + all = select = fragment = opt = a = input = null; + + return support; +})({}); + +var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, + rmultiDash = /([A-Z])/g; + +function internalData( elem, name, data, pvt /* Internal Use Only */ ){ + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var ret, thisCache, + internalKey = jQuery.expando, + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + id = elem[ internalKey ] = core_deletedIds.pop() || jQuery.guid++; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + // Avoid exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( typeof name === "string" ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; +} + +function internalRemoveData( elem, name, pvt ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + id = isNode ? elem[ jQuery.expando ] : jQuery.expando; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split(" "); + } + } + } else { + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = name.concat( jQuery.map( name, jQuery.camelCase ) ); + } + + i = name.length; + while ( i-- ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject( cache[ id ] ) ) { + return; + } + } + + // Destroy the cache + if ( isNode ) { + jQuery.cleanData( [ elem ], true ); + + // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) + /* jshint eqeqeq: false */ + } else if ( jQuery.support.deleteExpando || cache != cache.window ) { + /* jshint eqeqeq: true */ + delete cache[ id ]; + + // When all else fails, null + } else { + cache[ id ] = null; + } +} + +jQuery.extend({ + cache: {}, + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "applet": true, + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data ) { + return internalData( elem, name, data ); + }, + + removeData: function( elem, name ) { + return internalRemoveData( elem, name ); + }, + + // For internal use only. + _data: function( elem, name, data ) { + return internalData( elem, name, data, true ); + }, + + _removeData: function( elem, name ) { + return internalRemoveData( elem, name, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + // Do not set data on non-element because it will not be cleared (#8335). + if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) { + return false; + } + + var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; + + // nodes accept data unless otherwise specified; rejection can be conditional + return !noData || noData !== true && elem.getAttribute("classid") === noData; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var attrs, name, + data = null, + i = 0, + elem = this[0]; + + // Special expections of .data basically thwart jQuery.access, + // so implement the relevant behavior ourselves + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = jQuery.data( elem ); + + if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { + attrs = elem.attributes; + for ( ; i < attrs.length; i++ ) { + name = attrs[i].name; + + if ( name.indexOf("data-") === 0 ) { + name = jQuery.camelCase( name.slice(5) ); + + dataAttr( elem, name, data[ name ] ); + } + } + jQuery._data( elem, "parsedAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + return arguments.length > 1 ? + + // Sets one value + this.each(function() { + jQuery.data( this, key, value ); + }) : + + // Gets one value + // Try to fetch any internally stored data first + elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + var name; + for ( name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray(data) ) { + queue = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + hooks.cur = fn; + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // not intended for public consumption - generates a queueHooks object, or returns the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return jQuery._data( elem, key ) || jQuery._data( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + jQuery._removeData( elem, type + "queue" ); + jQuery._removeData( elem, key ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while( i-- ) { + tmp = jQuery._data( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var nodeHook, boolHook, + rclass = /[\t\r\n\f]/g, + rreturn = /\r/g, + rfocusable = /^(?:input|select|textarea|button|object)$/i, + rclickable = /^(?:a|area)$/i, + ruseDefault = /^(?:checked|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute, + getSetInput = jQuery.support.input; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call( this, j, this.className ) ); + }); + } + + if ( proceed ) { + // The disjunction here is for better compressibility (see removeClass) + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + " " + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + elem.className = jQuery.trim( cur ); + + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = arguments.length === 0 || typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call( this, j, this.className ) ); + }); + } + if ( proceed ) { + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + "" + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + elem.className = value ? jQuery.trim( cur ) : ""; + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.match( core_rnotwhite ) || []; + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space separated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + // Toggle whole class name + } else if ( type === core_strundefined || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // If the element has a class name or if we're passed "false", + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var ret, hooks, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // Use proper attribute retrieval(#6932, #12072) + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + elem.text; + } + }, + select: { + get: function( elem ) { + var value, option, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one" || index < 0, + values = one ? null : [], + max = one ? index + 1 : options.length, + i = index < 0 ? + max : + one ? index : 0; + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // oldIE doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + // Don't return options that are disabled or in a disabled optgroup + ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && + ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) { + optionSet = true; + } + } + + // force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + attr: function( elem, name, value ) { + var hooks, ret, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === core_strundefined ) { + return jQuery.prop( elem, name, value ); + } + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + + } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, value + "" ); + return value; + } + + } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var name, propName, + i = 0, + attrNames = value && value.match( core_rnotwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( (name = attrNames[i++]) ) { + propName = jQuery.propFix[ name ] || name; + + // Boolean attributes get special treatment (#10870) + if ( jQuery.expr.match.bool.test( name ) ) { + // Set corresponding property to false + if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + elem[ propName ] = false; + // Support: IE<9 + // Also clear defaultChecked/defaultSelected (if appropriate) + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = + elem[ propName ] = false; + } + + // See #9699 for explanation of this approach (setting first, then removal) + } else { + jQuery.attr( elem, name, "" ); + } + + elem.removeAttribute( getSetAttribute ? name : propName ); + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to default in case type is set after value during creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ? + ret : + ( elem[ name ] = value ); + + } else { + return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ? + ret : + elem[ name ]; + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + return tabindex ? + parseInt( tabindex, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + -1; + } + } + } +}); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + // IE<8 needs the *property* name + elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); + + // Use defaultChecked and defaultSelected for oldIE + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; + } + + return name; + } +}; +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { + var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr; + + jQuery.expr.attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ? + function( elem, name, isXML ) { + var fn = jQuery.expr.attrHandle[ name ], + ret = isXML ? + undefined : + /* jshint eqeqeq: false */ + (jQuery.expr.attrHandle[ name ] = undefined) != + getter( elem, name, isXML ) ? + + name.toLowerCase() : + null; + jQuery.expr.attrHandle[ name ] = fn; + return ret; + } : + function( elem, name, isXML ) { + return isXML ? + undefined : + elem[ jQuery.camelCase( "default-" + name ) ] ? + name.toLowerCase() : + null; + }; +}); + +// fix oldIE attroperties +if ( !getSetInput || !getSetAttribute ) { + jQuery.attrHooks.value = { + set: function( elem, value, name ) { + if ( jQuery.nodeName( elem, "input" ) ) { + // Does not return so that setAttribute is also used + elem.defaultValue = value; + } else { + // Use nodeHook if defined (#1954); otherwise setAttribute is fine + return nodeHook && nodeHook.set( elem, value, name ); + } + } + }; +} + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = { + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + elem.setAttributeNode( + (ret = elem.ownerDocument.createAttribute( name )) + ); + } + + ret.value = value += ""; + + // Break association with cloned elements by also using setAttribute (#9646) + return name === "value" || value === elem.getAttribute( name ) ? + value : + undefined; + } + }; + jQuery.expr.attrHandle.id = jQuery.expr.attrHandle.name = jQuery.expr.attrHandle.coords = + // Some attributes are constructed with empty-string values when not defined + function( elem, name, isXML ) { + var ret; + return isXML ? + undefined : + (ret = elem.getAttributeNode( name )) && ret.value !== "" ? + ret.value : + null; + }; + jQuery.valHooks.button = { + get: function( elem, name ) { + var ret = elem.getAttributeNode( name ); + return ret && ret.specified ? + ret.value : + undefined; + }, + set: nodeHook.set + }; + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + set: function( elem, value, name ) { + nodeHook.set( elem, value === "" ? false : value, name ); + } + }; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }; + }); +} + + +// Some attributes require a special call on IE +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !jQuery.support.hrefNormalized ) { + // href/src property should get the full normalized URL (#10299/#12915) + jQuery.each([ "href", "src" ], function( i, name ) { + jQuery.propHooks[ name ] = { + get: function( elem ) { + return elem.getAttribute( name, 4 ); + } + }; + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Note: IE uppercases css property names, but if we were to .toLowerCase() + // .cssText, that would destroy case senstitivity in URL's, like in "background" + return elem.style.cssText || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = value + "" ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }; +} + +jQuery.each([ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +}); + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }; + if ( !jQuery.support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + // Support: Webkit + // "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + }; + } +}); +var rformElems = /^(?:input|select|textarea)$/i, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + var tmp, events, t, handleObjIn, + special, eventHandle, handleObj, + handlers, type, namespaces, origType, + elemData = jQuery._data( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !(events = elemData.events) ) { + events = elemData.events = {}; + } + if ( !(eventHandle = elemData.handle) ) { + eventHandle = elemData.handle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( core_rnotwhite ) || [""]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !(handlers = events[ type ]) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + var j, handleObj, tmp, + origCount, t, events, + special, handlers, type, + namespaces, origType, + elemData = jQuery.hasData( elem ) && jQuery._data( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( core_rnotwhite ) || [""]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery._removeData( elem, "events" ); + } + }, + + trigger: function( event, data, elem, onlyHandlers ) { + var handle, ontype, cur, + bubbleType, special, tmp, i, + eventPath = [ elem || document ], + type = core_hasOwn.call( event, "type" ) ? event.type : event, + namespaces = core_hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; + + cur = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf(".") >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf(":") < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join("."); + event.namespace_re = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === (elem.ownerDocument || document) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && + jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + try { + elem[ type ](); + } catch ( e ) { + // IE<9 dies on focus/blur to hidden element (#1486,#12518) + // only reproducible on winXP IE8 native, not IE9 in IE8 mode + } + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, ret, handleObj, matched, j, + handlerQueue = [], + args = core_slice.call( arguments ), + handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( (event.result = ret) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var sel, handleObj, matches, i, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + // Black-hole SVG <use> instance trees (#13180) + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { + + /* jshint eqeqeq: false */ + for ( ; cur != this; cur = cur.parentNode || this ) { + /* jshint eqeqeq: true */ + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matches[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, handlers: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( delegateCount < handlers.length ) { + handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); + } + + return handlerQueue; + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: IE<9 + // Fix target property (#1925) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Support: Chrome 23+, Safari? + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // Support: IE<9 + // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) + event.metaKey = !!event.metaKey; + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var body, eventDoc, doc, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + try { + this.focus(); + return false; + } catch ( e ) { + // Support: IE<9 + // If we error on focus to hidden element (#1486, #12518), + // let .trigger() run the handlers + } + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return jQuery.nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Even when returnValue equals to undefined Firefox will still show alert + if ( event.result !== undefined ) { + event.originalEvent.returnValue = event.result; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + var name = "on" + type; + + if ( elem.detachEvent ) { + + // #8545, #7054, preventing memory leaks for custom events in IE6-8 + // detachEvent needed property on element, by name of that event, to properly expose it to GC + if ( typeof elem[ name ] === core_strundefined ) { + elem[ name ] = null; + } + + elem.detachEvent( name, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + if ( !e ) { + return; + } + + // If preventDefault exists, run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // Support: IE + // Otherwise set the returnValue property of the original event to false + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + if ( !e ) { + return; + } + // If stopPropagation exists, run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + + // Support: IE + // Set the cancelBubble property of the original event to true + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !jQuery._data( form, "submitBubbles" ) ) { + jQuery.event.add( form, "submit._submit", function( event ) { + event._submit_bubble = true; + }); + jQuery._data( form, "submitBubbles", true ); + } + }); + // return undefined since we don't need an event listener + }, + + postDispatch: function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( event._submit_bubble ) { + delete event._submit_bubble; + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + } + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + } + // Allow triggered, simulated change events (#11500) + jQuery.event.simulate( "change", this, event, true ); + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + jQuery._data( elem, "changeBubbles", true ); + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return !rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var type, origFn; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + var elem = this[0]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +}); +var isSimple = /^.[^:#\[\.,]*$/, + rparentsprev = /^(?:parents|prev(?:Until|All))/, + rneedsContext = jQuery.expr.match.needsContext, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var i, + ret = [], + self = this, + len = self.length; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }) ); + } + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = this.selector ? this.selector + " " + selector : selector; + return ret; + }, + + has: function( target ) { + var i, + targets = jQuery( target, this ), + len = targets.length; + + return this.filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector || [], true) ); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector || [], false) ); + }, + + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + ret = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { + // Always skip document fragments + if ( cur.nodeType < 11 && (pos ? + pos.index(cur) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector(cur, selectors)) ) { + + cur = ret.push( cur ); + break; + } + } + } + + return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( jQuery.unique(all) ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +function sibling( cur, dir ) { + do { + cur = cur[ dir ]; + } while ( cur && cur.nodeType !== 1 ); + + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + if ( this.length > 1 ) { + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + ret = jQuery.unique( ret ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + } + + return this.pushStack( ret ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 && elem.nodeType === 1 ? + jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : + jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + })); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + /* jshint -W018 */ + return !!qualifier.call( elem, i, elem ) !== not; + }); + + } + + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + }); + + } + + if ( typeof qualifier === "string" ) { + if ( isSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + qualifier = jQuery.filter( qualifier, elements ); + } + + return jQuery.grep( elements, function( elem ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not; + }); +} +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, + rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rtbody = /<tbody/i, + rhtml = /<|&#?\w+;/, + rnoInnerhtml = /<(?:script|style|link)/i, + manipulation_rcheckableType = /^(?:checkbox|radio)$/i, + // checked="checked" or checked + rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, + rscriptType = /^$|\/(?:java|ecma)script/i, + rscriptTypeMasked = /^true\/(.*)/, + rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g, + + // We have to close these tags to support XHTML (#13200) + wrapMap = { + option: [ 1, "<select multiple='multiple'>", "</select>" ], + legend: [ 1, "<fieldset>", "</fieldset>" ], + area: [ 1, "<map>", "</map>" ], + param: [ 1, "<object>", "</object>" ], + thead: [ 1, "<table>", "</table>" ], + tr: [ 2, "<table><tbody>", "</tbody></table>" ], + col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], + td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], + + // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, + // unless wrapped in a div with non-breaking characters in front of it. + _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ] + }, + safeFragment = createSafeFragment( document ), + fragmentDiv = safeFragment.appendChild( document.createElement("div") ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +jQuery.fn.extend({ + text: function( value ) { + return jQuery.access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); + }, null, value, arguments.length ); + }, + + append: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + }); + }, + + before: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + }); + }, + + after: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + }); + }, + + // keepData is for internal use only--do not document + remove: function( selector, keepData ) { + var elem, + elems = selector ? jQuery.filter( selector, this ) : this, + i = 0; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem ) ); + } + + if ( elem.parentNode ) { + if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { + setGlobalEval( getAll( elem, "script" ) ); + } + elem.parentNode.removeChild( elem ); + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + } + + // Remove any remaining nodes + while ( elem.firstChild ) { + elem.removeChild( elem.firstChild ); + } + + // If this is a select, ensure that it displays empty (#12336) + // Support: IE<9 + if ( elem.options && jQuery.nodeName( elem, "select" ) ) { + elem.options.length = 0; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function () { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return jQuery.access( this, function( value ) { + var elem = this[0] || {}, + i = 0, + l = this.length; + + if ( value === undefined ) { + return elem.nodeType === 1 ? + elem.innerHTML.replace( rinlinejQuery, "" ) : + undefined; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && + ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && + !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1></$2>" ); + + try { + for (; i < l; i++ ) { + // Remove element nodes and prevent memory leaks + elem = this[i] || {}; + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch(e) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var + // Snapshot the DOM in case .domManip sweeps something relevant into its fragment + args = jQuery.map( this, function( elem ) { + return [ elem.nextSibling, elem.parentNode ]; + }), + i = 0; + + // Make the changes, replacing each context element with the new content + this.domManip( arguments, function( elem ) { + var next = args[ i++ ], + parent = args[ i++ ]; + + if ( parent ) { + // Don't use the snapshot next if it has moved (#13810) + if ( next && next.parentNode !== parent ) { + next = this.nextSibling; + } + jQuery( this ).remove(); + parent.insertBefore( elem, next ); + } + // Allow new content to include elements from the context set + }, true ); + + // Force removal if there was no new content (e.g., from empty arguments) + return i ? this : this.remove(); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, callback, allowIntersection ) { + + // Flatten any nested arrays + args = core_concat.apply( [], args ); + + var first, node, hasScripts, + scripts, doc, fragment, + i = 0, + l = this.length, + set = this, + iNoClone = l - 1, + value = args[0], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { + return this.each(function( index ) { + var self = set.eq( index ); + if ( isFunction ) { + args[0] = value.call( this, index, self.html() ); + } + self.domManip( args, callback, allowIntersection ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, !allowIntersection && this ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( this[i], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { + + if ( node.src ) { + // Hope ajax is available... + jQuery._evalUrl( node.src ); + } else { + jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); + } + } + } + } + + // Fix #11809: Avoid leaking memory + fragment = first = null; + } + } + + return this; + } +}); + +// Support: IE<8 +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType === 1 ? content : content.firstChild, "tr" ) ? + + elem.getElementsByTagName("tbody")[0] || + elem.appendChild( elem.ownerDocument.createElement("tbody") ) : + elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + if ( match ) { + elem.type = match[1]; + } else { + elem.removeAttribute("type"); + } + return elem; +} + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var elem, + i = 0; + for ( ; (elem = elems[i]) != null; i++ ) { + jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); + } +} + +function cloneCopyEvent( src, dest ) { + + if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { + return; + } + + var type, i, l, + oldData = jQuery._data( src ), + curData = jQuery._data( dest, oldData ), + events = oldData.events; + + if ( events ) { + delete curData.handle; + curData.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + + // make the cloned public data object a copy from the original + if ( curData.data ) { + curData.data = jQuery.extend( {}, curData.data ); + } +} + +function fixCloneNodeIssues( src, dest ) { + var nodeName, e, data; + + // We do not need to do anything for non-Elements + if ( dest.nodeType !== 1 ) { + return; + } + + nodeName = dest.nodeName.toLowerCase(); + + // IE6-8 copies events bound via attachEvent when using cloneNode. + if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { + data = jQuery._data( dest ); + + for ( e in data.events ) { + jQuery.removeEvent( dest, e, data.handle ); + } + + // Event data gets referenced instead of copied if the expando gets copied too + dest.removeAttribute( jQuery.expando ); + } + + // IE blanks contents when cloning scripts, and tries to evaluate newly-set text + if ( nodeName === "script" && dest.text !== src.text ) { + disableScript( dest ).text = src.text; + restoreScript( dest ); + + // IE6-10 improperly clones children of object elements using classid. + // IE10 throws NoModificationAllowedError if parent is null, #12132. + } else if ( nodeName === "object" ) { + if ( dest.parentNode ) { + dest.outerHTML = src.outerHTML; + } + + // This path appears unavoidable for IE9. When cloning an object + // element in IE9, the outerHTML strategy above is not sufficient. + // If the src has innerHTML and the destination does not, + // copy the src.innerHTML into the dest.innerHTML. #10324 + if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { + dest.innerHTML = src.innerHTML; + } + + } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { + // IE6-8 fails to persist the checked state of a cloned checkbox + // or radio button. Worse, IE6-7 fail to give the cloned element + // a checked appearance if the defaultChecked value isn't also set + + dest.defaultChecked = dest.checked = src.checked; + + // IE6-7 get confused and end up setting the value of a cloned + // checkbox/radio button to an empty string instead of "on" + if ( dest.value !== src.value ) { + dest.value = src.value; + } + + // IE6-8 fails to return the selected option to the default selected + // state when cloning options + } else if ( nodeName === "option" ) { + dest.defaultSelected = dest.selected = src.defaultSelected; + + // IE6-8 fails to set the defaultValue to the correct value when + // cloning other types of input fields + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + i = 0, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone(true); + jQuery( insert[i] )[ original ]( elems ); + + // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() + core_push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +}); + +function getAll( context, tag ) { + var elems, elem, + i = 0, + found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) : + typeof context.querySelectorAll !== core_strundefined ? context.querySelectorAll( tag || "*" ) : + undefined; + + if ( !found ) { + for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { + if ( !tag || jQuery.nodeName( elem, tag ) ) { + found.push( elem ); + } else { + jQuery.merge( found, getAll( elem, tag ) ); + } + } + } + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], found ) : + found; +} + +// Used in buildFragment, fixes the defaultChecked property +function fixDefaultChecked( elem ) { + if ( manipulation_rcheckableType.test( elem.type ) ) { + elem.defaultChecked = elem.checked; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var destElements, node, clone, i, srcElements, + inPage = jQuery.contains( elem.ownerDocument, elem ); + + if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { + clone = elem.cloneNode( true ); + + // IE<=8 does not properly clone detached, unknown element nodes + } else { + fragmentDiv.innerHTML = elem.outerHTML; + fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); + } + + if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && + (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { + + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + // Fix all IE cloning issues + for ( i = 0; (node = srcElements[i]) != null; ++i ) { + // Ensure that the destination node is not null; Fixes #9587 + if ( destElements[i] ) { + fixCloneNodeIssues( node, destElements[i] ); + } + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0; (node = srcElements[i]) != null; i++ ) { + cloneCopyEvent( node, destElements[i] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + destElements = srcElements = node = null; + + // Return the cloned set + return clone; + }, + + buildFragment: function( elems, context, scripts, selection ) { + var j, elem, contains, + tmp, tag, tbody, wrap, + l = elems.length, + + // Ensure a safe fragment + safe = createSafeFragment( context ), + + nodes = [], + i = 0; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || safe.appendChild( context.createElement("div") ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + + tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[2]; + + // Descend through wrappers to the right content + j = wrap[0]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Manually add leading whitespace removed by IE + if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); + } + + // Remove IE's autoinserted <tbody> from table fragments + if ( !jQuery.support.tbody ) { + + // String was a <table>, *may* have spurious <tbody> + elem = tag === "table" && !rtbody.test( elem ) ? + tmp.firstChild : + + // String was a bare <thead> or <tfoot> + wrap[1] === "<table>" && !rtbody.test( elem ) ? + tmp : + 0; + + j = elem && elem.childNodes.length; + while ( j-- ) { + if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { + elem.removeChild( tbody ); + } + } + } + + jQuery.merge( nodes, tmp.childNodes ); + + // Fix #12392 for WebKit and IE > 9 + tmp.textContent = ""; + + // Fix #12392 for oldIE + while ( tmp.firstChild ) { + tmp.removeChild( tmp.firstChild ); + } + + // Remember the top-level container for proper cleanup + tmp = safe.lastChild; + } + } + } + + // Fix #11356: Clear elements from fragment + if ( tmp ) { + safe.removeChild( tmp ); + } + + // Reset defaultChecked for any radios and checkboxes + // about to be appended to the DOM in IE 6/7 (#8060) + if ( !jQuery.support.appendChecked ) { + jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); + } + + i = 0; + while ( (elem = nodes[ i++ ]) ) { + + // #4087 - If origin and destination elements are the same, and this is + // that element, do not do anything + if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( safe.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( (elem = tmp[ j++ ]) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + tmp = null; + + return safe; + }, + + cleanData: function( elems, /* internal */ acceptData ) { + var elem, type, id, data, + i = 0, + internalKey = jQuery.expando, + cache = jQuery.cache, + deleteExpando = jQuery.support.deleteExpando, + special = jQuery.event.special; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( acceptData || jQuery.acceptData( elem ) ) { + + id = elem[ internalKey ]; + data = id && cache[ id ]; + + if ( data ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Remove cache only if it was not already removed by jQuery.event.remove + if ( cache[ id ] ) { + + delete cache[ id ]; + + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( deleteExpando ) { + delete elem[ internalKey ]; + + } else if ( typeof elem.removeAttribute !== core_strundefined ) { + elem.removeAttribute( internalKey ); + + } else { + elem[ internalKey ] = null; + } + + core_deletedIds.push( id ); + } + } + } + } + }, + + _evalUrl: function( url ) { + return jQuery.ajax({ + url: url, + type: "GET", + dataType: "script", + async: false, + global: false, + "throws": true + }); + } +}); +jQuery.fn.extend({ + wrapAll: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapAll( html.call(this, i) ); + }); + } + + if ( this[0] ) { + // The elements to wrap the target around + var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); + + if ( this[0].parentNode ) { + wrap.insertBefore( this[0] ); + } + + wrap.map(function() { + var elem = this; + + while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { + elem = elem.firstChild; + } + + return elem; + }).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapInner( html.call(this, i) ); + }); + } + + return this.each(function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + }); + }, + + wrap: function( html ) { + var isFunction = jQuery.isFunction( html ); + + return this.each(function(i) { + jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); + }); + }, + + unwrap: function() { + return this.parent().each(function() { + if ( !jQuery.nodeName( this, "body" ) ) { + jQuery( this ).replaceWith( this.childNodes ); + } + }).end(); + } +}); +var iframe, getStyles, curCSS, + ralpha = /alpha\([^)]*\)/i, + ropacity = /opacity\s*=\s*([^)]*)/, + rposition = /^(top|right|bottom|left)$/, + // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" + // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rmargin = /^margin/, + rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), + rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), + rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), + elemdisplay = { BODY: "block" }, + + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: 0, + fontWeight: 400 + }, + + cssExpand = [ "Top", "Right", "Bottom", "Left" ], + cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; + +// return a css property mapped to a potentially vendor prefixed property +function vendorPropName( style, name ) { + + // shortcut for names that are not vendor prefixed + if ( name in style ) { + return name; + } + + // check for vendor prefixed names + var capName = name.charAt(0).toUpperCase() + name.slice(1), + origName = name, + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in style ) { + return name; + } + } + + return origName; +} + +function isHidden( elem, el ) { + // isHidden might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); +} + +function showHide( elements, show ) { + var display, elem, hidden, + values = [], + index = 0, + length = elements.length; + + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + values[ index ] = jQuery._data( elem, "olddisplay" ); + display = elem.style.display; + if ( show ) { + // Reset the inline display of this element to learn if it is + // being hidden by cascaded rules or not + if ( !values[ index ] && display === "none" ) { + elem.style.display = ""; + } + + // Set elements which have been overridden with display: none + // in a stylesheet to whatever the default browser style is + // for such an element + if ( elem.style.display === "" && isHidden( elem ) ) { + values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); + } + } else { + + if ( !values[ index ] ) { + hidden = isHidden( elem ); + + if ( display && display !== "none" || !hidden ) { + jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); + } + } + } + } + + // Set the display of most of the elements in a second loop + // to avoid the constant reflow + for ( index = 0; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + if ( !show || elem.style.display === "none" || elem.style.display === "" ) { + elem.style.display = show ? values[ index ] || "" : "none"; + } + } + + return elements; +} + +jQuery.fn.extend({ + css: function( name, value ) { + return jQuery.access( this, function( elem, name, value ) { + var len, styles, + map = {}, + i = 0; + + if ( jQuery.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + }, + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + var bool = typeof state === "boolean"; + + return this.each(function() { + if ( bool ? state : isHidden( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + }); + } +}); + +jQuery.extend({ + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "columnCount": true, + "fillOpacity": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: { + // normalize float css property + "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" + }, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = jQuery.camelCase( name ), + style = elem.style; + + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // convert relative number strings (+= or -=) to relative numbers. #7345 + if ( type === "string" && (ret = rrelNum.exec( value )) ) { + value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); + // Fixes bug #9237 + type = "number"; + } + + // Make sure that NaN and null values aren't set. See: #7116 + if ( value == null || type === "number" && isNaN( value ) ) { + return; + } + + // If a number was passed in, add 'px' to the (except for certain CSS properties) + if ( type === "number" && !jQuery.cssNumber[ origName ] ) { + value += "px"; + } + + // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, + // but it would mean to define eight (for every problematic property) identical functions + if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { + + // Wrapped to prevent IE from throwing errors when 'invalid' values are provided + // Fixes bug #5509 + try { + style[ name ] = value; + } catch(e) {} + } + + } else { + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var num, val, hooks, + origName = jQuery.camelCase( name ); + + // Make sure that we're working with the right name + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + //convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Return, converting to number if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; + } + return val; + } +}); + +// NOTE: we've included the "window" in window.getComputedStyle +// because jsdom on node.js will break without it. +if ( window.getComputedStyle ) { + getStyles = function( elem ) { + return window.getComputedStyle( elem, null ); + }; + + curCSS = function( elem, name, _computed ) { + var width, minWidth, maxWidth, + computed = _computed || getStyles( elem ), + + // getPropertyValue is only needed for .css('filter') in IE9, see #12537 + ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, + style = elem.style; + + if ( computed ) { + + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right + // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels + // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values + if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret; + }; +} else if ( document.documentElement.currentStyle ) { + getStyles = function( elem ) { + return elem.currentStyle; + }; + + curCSS = function( elem, name, _computed ) { + var left, rs, rsLeft, + computed = _computed || getStyles( elem ), + ret = computed ? computed[ name ] : undefined, + style = elem.style; + + // Avoid setting ret to empty string here + // so we don't default to auto + if ( ret == null && style && style[ name ] ) { + ret = style[ name ]; + } + + // From the awesome hack by Dean Edwards + // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 + + // If we're not dealing with a regular pixel number + // but a number that has a weird ending, we need to convert it to pixels + // but not position css attributes, as those are proportional to the parent element instead + // and we can't measure the parent instead because it might trigger a "stacking dolls" problem + if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { + + // Remember the original values + left = style.left; + rs = elem.runtimeStyle; + rsLeft = rs && rs.left; + + // Put in the new values to get a computed value out + if ( rsLeft ) { + rs.left = elem.currentStyle.left; + } + style.left = name === "fontSize" ? "1em" : ret; + ret = style.pixelLeft + "px"; + + // Revert the changed values + style.left = left; + if ( rsLeft ) { + rs.left = rsLeft; + } + } + + return ret === "" ? "auto" : ret; + }; +} + +function setPositiveNumber( elem, value, subtract ) { + var matches = rnumsplit.exec( value ); + return matches ? + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : + value; +} + +function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { + var i = extra === ( isBorderBox ? "border" : "content" ) ? + // If we already have the right measurement, avoid augmentation + 4 : + // Otherwise initialize for horizontal or vertical properties + name === "width" ? 1 : 0, + + val = 0; + + for ( ; i < 4; i += 2 ) { + // both box models exclude margin, so add it if we want it + if ( extra === "margin" ) { + val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); + } + + if ( isBorderBox ) { + // border-box includes padding, so remove it if we want content + if ( extra === "content" ) { + val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // at this point, extra isn't border nor margin, so remove border + if ( extra !== "margin" ) { + val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } else { + // at this point, extra isn't content, so add padding + val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // at this point, extra isn't content nor padding, so add border + if ( extra !== "padding" ) { + val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + return val; +} + +function getWidthOrHeight( elem, name, extra ) { + + // Start with offset property, which is equivalent to the border-box value + var valueIsBorderBox = true, + val = name === "width" ? elem.offsetWidth : elem.offsetHeight, + styles = getStyles( elem ), + isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // some non-html elements return undefined for offsetWidth, so check for null/undefined + // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 + // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 + if ( val <= 0 || val == null ) { + // Fall back to computed then uncomputed css if necessary + val = curCSS( elem, name, styles ); + if ( val < 0 || val == null ) { + val = elem.style[ name ]; + } + + // Computed unit is not pixels. Stop here and return. + if ( rnumnonpx.test(val) ) { + return val; + } + + // we need the check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); + + // Normalize "", auto, and prepare for extra + val = parseFloat( val ) || 0; + } + + // use the active box-sizing model to add/subtract irrelevant styles + return ( val + + augmentWidthOrHeight( + elem, + name, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles + ) + ) + "px"; +} + +// Try to determine the default display value of an element +function css_defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; + + if ( !display ) { + display = actualDisplay( nodeName, doc ); + + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { + // Use the already-created iframe if possible + iframe = ( iframe || + jQuery("<iframe frameborder='0' width='0' height='0'/>") + .css( "cssText", "display:block !important" ) + ).appendTo( doc.documentElement ); + + // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse + doc = ( iframe[0].contentWindow || iframe[0].contentDocument ).document; + doc.write("<!doctype html><html><body>"); + doc.close(); + + display = actualDisplay( nodeName, doc ); + iframe.detach(); + } + + // Store the correct default display + elemdisplay[ nodeName ] = display; + } + + return display; +} + +// Called ONLY from within css_defaultDisplay +function actualDisplay( name, doc ) { + var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), + display = jQuery.css( elem[0], "display" ); + elem.remove(); + return display; +} + +jQuery.each([ "height", "width" ], function( i, name ) { + jQuery.cssHooks[ name ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + // certain elements can have dimension info if we invisibly show them + // however, it must have a current display style that would benefit from this + return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ? + jQuery.swap( elem, cssShow, function() { + return getWidthOrHeight( elem, name, extra ); + }) : + getWidthOrHeight( elem, name, extra ); + } + }, + + set: function( elem, value, extra ) { + var styles = extra && getStyles( elem ); + return setPositiveNumber( elem, value, extra ? + augmentWidthOrHeight( + elem, + name, + extra, + jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + styles + ) : 0 + ); + } + }; +}); + +if ( !jQuery.support.opacity ) { + jQuery.cssHooks.opacity = { + get: function( elem, computed ) { + // IE uses filters for opacity + return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ? + ( 0.01 * parseFloat( RegExp.$1 ) ) + "" : + computed ? "1" : ""; + }, + + set: function( elem, value ) { + var style = elem.style, + currentStyle = elem.currentStyle, + opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", + filter = currentStyle && currentStyle.filter || style.filter || ""; + + // IE has trouble with opacity if it does not have layout + // Force it by setting the zoom level + style.zoom = 1; + + // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652 + // if value === "", then remove inline opacity #12685 + if ( ( value >= 1 || value === "" ) && + jQuery.trim( filter.replace( ralpha, "" ) ) === "" && + style.removeAttribute ) { + + // Setting style.filter to null, "" & " " still leave "filter:" in the cssText + // if "filter:" is present at all, clearType is disabled, we want to avoid this + // style.removeAttribute is IE Only, but so apparently is this code path... + style.removeAttribute( "filter" ); + + // if there is no filter style applied in a css rule or unset inline opacity, we are done + if ( value === "" || currentStyle && !currentStyle.filter ) { + return; + } + } + + // otherwise, set new filter values + style.filter = ralpha.test( filter ) ? + filter.replace( ralpha, opacity ) : + filter + " " + opacity; + } + }; +} + +// These hooks cannot be added until DOM ready because the support test +// for it is not run until after DOM ready +jQuery(function() { + if ( !jQuery.support.reliableMarginRight ) { + jQuery.cssHooks.marginRight = { + get: function( elem, computed ) { + if ( computed ) { + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + // Work around by temporarily setting element display to inline-block + return jQuery.swap( elem, { "display": "inline-block" }, + curCSS, [ elem, "marginRight" ] ); + } + } + }; + } + + // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 + // getComputedStyle returns percent when specified for top/left/bottom/right + // rather than make the css module depend on the offset module, we just check for it here + if ( !jQuery.support.pixelPosition && jQuery.fn.position ) { + jQuery.each( [ "top", "left" ], function( i, prop ) { + jQuery.cssHooks[ prop ] = { + get: function( elem, computed ) { + if ( computed ) { + computed = curCSS( elem, prop ); + // if curCSS returns percentage, fallback to offset + return rnumnonpx.test( computed ) ? + jQuery( elem ).position()[ prop ] + "px" : + computed; + } + } + }; + }); + } + +}); + +if ( jQuery.expr && jQuery.expr.filters ) { + jQuery.expr.filters.hidden = function( elem ) { + // Support: Opera <= 12.12 + // Opera reports offsetWidths and offsetHeights less than zero on some elements + return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 || + (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none"); + }; + + jQuery.expr.filters.visible = function( elem ) { + return !jQuery.expr.filters.hidden( elem ); + }; +} + +// These hooks are used by animate to expand properties +jQuery.each({ + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // assumes a single number if not a string + parts = typeof value === "string" ? value.split(" ") : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( !rmargin.test( prefix ) ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +}); +var r20 = /%20/g, + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +jQuery.fn.extend({ + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map(function(){ + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + }) + .filter(function(){ + var type = this.type; + // Use .is(":disabled") so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !manipulation_rcheckableType.test( type ) ); + }) + .map(function( i, elem ){ + var val = jQuery( this ).val(); + + return val == null ? + null : + jQuery.isArray( val ) ? + jQuery.map( val, function( val ){ + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + }) : + { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + }).get(); + } +}); + +//Serialize an array of form elements or a set of +//key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, value ) { + // If value is a function, invoke it and return its value + value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); + s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); + }; + + // Set traditional to true for jQuery <= 1.3.2 behavior. + if ( traditional === undefined ) { + traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + }); + + } else { + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ).replace( r20, "+" ); +}; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( jQuery.isArray( obj ) ) { + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + // Item is non-scalar (array or object), encode its numeric index. + buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add ); + } + }); + + } else if ( !traditional && jQuery.type( obj ) === "object" ) { + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + // Serialize scalar item. + add( prefix, obj ); + } +} +jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + return arguments.length > 0 ? + this.on( name, null, data, fn ) : + this.trigger( name ); + }; +}); + +jQuery.fn.extend({ + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + }, + + bind: function( types, data, fn ) { + return this.on( types, null, data, fn ); + }, + unbind: function( types, fn ) { + return this.off( types, null, fn ); + }, + + delegate: function( selector, types, data, fn ) { + return this.on( types, selector, data, fn ); + }, + undelegate: function( selector, types, fn ) { + // ( namespace ) or ( selector, types [, fn] ) + return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); + } +}); +var + // Document location + ajaxLocParts, + ajaxLocation, + ajax_nonce = jQuery.now(), + + ajax_rquery = /\?/, + rhash = /#.*$/, + rts = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + rurl = /^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/, + + // Keep a copy of the old load method + _load = jQuery.fn.load, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat("*"); + +// #8138, IE may throw an exception when accessing +// a field from window.location if document.domain has been set +try { + ajaxLocation = location.href; +} catch( e ) { + // Use the href attribute of an A element + // since IE will modify it given document.location + ajaxLocation = document.createElement( "a" ); + ajaxLocation.href = ""; + ajaxLocation = ajaxLocation.href; +} + +// Segment location into parts +ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( core_rnotwhite ) || []; + + if ( jQuery.isFunction( func ) ) { + // For each dataType in the dataTypeExpression + while ( (dataType = dataTypes[i++]) ) { + // Prepend if requested + if ( dataType[0] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + (structure[ dataType ] = structure[ dataType ] || []).unshift( func ); + + // Otherwise append + } else { + (structure[ dataType ] = structure[ dataType ] || []).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + }); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var deep, key, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +jQuery.fn.load = function( url, params, callback ) { + if ( typeof url !== "string" && _load ) { + return _load.apply( this, arguments ); + } + + var selector, response, type, + self = this, + off = url.indexOf(" "); + + if ( off >= 0 ) { + selector = url.slice( off, url.length ); + url = url.slice( 0, off ); + } + + // If it's a function + if ( jQuery.isFunction( params ) ) { + + // We assume that it's the callback + callback = params; + params = undefined; + + // Otherwise, build a param string + } else if ( params && typeof params === "object" ) { + type = "POST"; + } + + // If we have elements to modify, make the request + if ( self.length > 0 ) { + jQuery.ajax({ + url: url, + + // if "type" variable is undefined, then "GET" method will be used + type: type, + dataType: "html", + data: params + }).done(function( responseText ) { + + // Save response for use in complete callback + response = arguments; + + self.html( selector ? + + // If a selector was specified, locate the right elements in a dummy div + // Exclude scripts to avoid IE 'Permission Denied' errors + jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) : + + // Otherwise use the full result + responseText ); + + }).complete( callback && function( jqXHR, status ) { + self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] ); + }); + } + + return this; +}; + +// Attach a bunch of functions for handling common AJAX events +jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ){ + jQuery.fn[ type ] = function( fn ){ + return this.on( type, fn ); + }; +}); + +jQuery.extend({ + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: ajaxLocation, + type: "GET", + isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /xml/, + html: /html/, + json: /json/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": jQuery.parseJSON, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var // Cross-domain detection vars + parts, + // Loop variable + i, + // URL without anti-cache param + cacheURL, + // Response headers as string + responseHeadersString, + // timeout handle + timeoutTimer, + + // To know if global events are to be dispatched + fireGlobals, + + transport, + // Response headers + responseHeaders, + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + // Callbacks context + callbackContext = s.context || s, + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks("once memory"), + // Status-dependent callbacks + statusCode = s.statusCode || {}, + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + // The jqXHR state + state = 0, + // Default abort message + strAbort = "canceled", + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( state === 2 ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( (match = rheaders.exec( responseHeadersString )) ) { + responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; + } + } + match = responseHeaders[ key.toLowerCase() ]; + } + return match == null ? null : match; + }, + + // Raw string + getAllResponseHeaders: function() { + return state === 2 ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + var lname = name.toLowerCase(); + if ( !state ) { + name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( !state ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( state < 2 ) { + for ( code in map ) { + // Lazy-add the new callback in a way that preserves old ones + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } else { + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ).complete = completeDeferred.add; + jqXHR.success = jqXHR.done; + jqXHR.error = jqXHR.fail; + + // Remove hash character (#7531: and string promotion) + // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( core_rnotwhite ) || [""]; + + // A cross-domain request is in order when we have a protocol:host:port mismatch + if ( s.crossDomain == null ) { + parts = rurl.exec( s.url.toLowerCase() ); + s.crossDomain = !!( parts && + ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] || + ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !== + ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) ) + ); + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( state === 2 ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + fireGlobals = s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger("ajaxStart"); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + cacheURL = s.url; + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // If data is available, append data to url + if ( s.data ) { + cacheURL = ( s.url += ( ajax_rquery.test( cacheURL ) ? "&" : "?" ) + s.data ); + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add anti-cache in url if needed + if ( s.cache === false ) { + s.url = rts.test( cacheURL ) ? + + // If there is already a '_' parameter, set its value + cacheURL.replace( rts, "$1_=" + ajax_nonce++ ) : + + // Otherwise add one to the end + cacheURL + ( ajax_rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ajax_nonce++; + } + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ? + s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { + // Abort if not done already and return + return jqXHR.abort(); + } + + // aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + for ( i in { success: 1, error: 1, complete: 1 } ) { + jqXHR[ i ]( s[ i ] ); + } + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = setTimeout(function() { + jqXHR.abort("timeout"); + }, s.timeout ); + } + + try { + state = 1; + transport.send( requestHeaders, done ); + } catch ( e ) { + // Propagate exception as error if not done + if ( state < 2 ) { + done( -1, e ); + // Simply rethrow otherwise + } else { + throw e; + } + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Called once + if ( state === 2 ) { + return; + } + + // State is "done" now + state = 2; + + // Clear timeout if it exists + if ( timeoutTimer ) { + clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader("Last-Modified"); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader("etag"); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + // We extract error from statusText + // then normalize statusText and status for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger("ajaxStop"); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +}); + +jQuery.each( [ "get", "post" ], function( i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + // shift arguments if data argument was omitted + if ( jQuery.isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + return jQuery.ajax({ + url: url, + type: method, + dataType: type, + data: data, + success: callback + }); + }; +}); + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + var firstDataType, ct, finalDataType, type, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader("Content-Type"); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s[ "throws" ] ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} +// Install script dataType +jQuery.ajaxSetup({ + accepts: { + script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /(?:java|ecma)script/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +}); + +// Handle cache's special case and global +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + s.global = false; + } +}); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function(s) { + + // This transport only deals with cross domain requests + if ( s.crossDomain ) { + + var script, + head = document.head || jQuery("head")[0] || document.documentElement; + + return { + + send: function( _, callback ) { + + script = document.createElement("script"); + + script.async = true; + + if ( s.scriptCharset ) { + script.charset = s.scriptCharset; + } + + script.src = s.url; + + // Attach handlers for all browsers + script.onload = script.onreadystatechange = function( _, isAbort ) { + + if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { + + // Handle memory leak in IE + script.onload = script.onreadystatechange = null; + + // Remove the script + if ( script.parentNode ) { + script.parentNode.removeChild( script ); + } + + // Dereference the script + script = null; + + // Callback if not abort + if ( !isAbort ) { + callback( 200, "success" ); + } + } + }; + + // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending + // Use native DOM manipulation to avoid our domManip AJAX trickery + head.insertBefore( script, head.firstChild ); + }, + + abort: function() { + if ( script ) { + script.onload( undefined, true ); + } + } + }; + } +}); +var oldCallbacks = [], + rjsonp = /(=)\?(?=&|$)|\?\?/; + +// Default jsonp settings +jQuery.ajaxSetup({ + jsonp: "callback", + jsonpCallback: function() { + var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( ajax_nonce++ ) ); + this[ callback ] = true; + return callback; + } +}); + +// Detect, normalize options and install callbacks for jsonp requests +jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { + + var callbackName, overwritten, responseContainer, + jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ? + "url" : + typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data" + ); + + // Handle iff the expected data type is "jsonp" or we have a parameter to set + if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) { + + // Get callback name, remembering preexisting value associated with it + callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ? + s.jsonpCallback() : + s.jsonpCallback; + + // Insert callback into url or form data + if ( jsonProp ) { + s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName ); + } else if ( s.jsonp !== false ) { + s.url += ( ajax_rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; + } + + // Use data converter to retrieve json after script execution + s.converters["script json"] = function() { + if ( !responseContainer ) { + jQuery.error( callbackName + " was not called" ); + } + return responseContainer[ 0 ]; + }; + + // force json dataType + s.dataTypes[ 0 ] = "json"; + + // Install callback + overwritten = window[ callbackName ]; + window[ callbackName ] = function() { + responseContainer = arguments; + }; + + // Clean-up function (fires after converters) + jqXHR.always(function() { + // Restore preexisting value + window[ callbackName ] = overwritten; + + // Save back as free + if ( s[ callbackName ] ) { + // make sure that re-using the options doesn't screw things around + s.jsonpCallback = originalSettings.jsonpCallback; + + // save the callback name for future use + oldCallbacks.push( callbackName ); + } + + // Call if it was a function and we have a response + if ( responseContainer && jQuery.isFunction( overwritten ) ) { + overwritten( responseContainer[ 0 ] ); + } + + responseContainer = overwritten = undefined; + }); + + // Delegate to script + return "script"; + } +}); +var xhrCallbacks, xhrSupported, + xhrId = 0, + // #5280: Internet Explorer will keep connections alive if we don't abort on unload + xhrOnUnloadAbort = window.ActiveXObject && function() { + // Abort all pending requests + var key; + for ( key in xhrCallbacks ) { + xhrCallbacks[ key ]( undefined, true ); + } + }; + +// Functions to create xhrs +function createStandardXHR() { + try { + return new window.XMLHttpRequest(); + } catch( e ) {} +} + +function createActiveXHR() { + try { + return new window.ActiveXObject("Microsoft.XMLHTTP"); + } catch( e ) {} +} + +// Create the request object +// (This is still attached to ajaxSettings for backward compatibility) +jQuery.ajaxSettings.xhr = window.ActiveXObject ? + /* Microsoft failed to properly + * implement the XMLHttpRequest in IE7 (can't request local files), + * so we use the ActiveXObject when it is available + * Additionally XMLHttpRequest can be disabled in IE7/IE8 so + * we need a fallback. + */ + function() { + return !this.isLocal && createStandardXHR() || createActiveXHR(); + } : + // For all other browsers, use the standard XMLHttpRequest object + createStandardXHR; + +// Determine support properties +xhrSupported = jQuery.ajaxSettings.xhr(); +jQuery.support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +xhrSupported = jQuery.support.ajax = !!xhrSupported; + +// Create transport if the browser can provide an xhr +if ( xhrSupported ) { + + jQuery.ajaxTransport(function( s ) { + // Cross domain only allowed if supported through XMLHttpRequest + if ( !s.crossDomain || jQuery.support.cors ) { + + var callback; + + return { + send: function( headers, complete ) { + + // Get a new xhr + var handle, i, + xhr = s.xhr(); + + // Open the socket + // Passing null username, generates a login popup on Opera (#2865) + if ( s.username ) { + xhr.open( s.type, s.url, s.async, s.username, s.password ); + } else { + xhr.open( s.type, s.url, s.async ); + } + + // Apply custom fields if provided + if ( s.xhrFields ) { + for ( i in s.xhrFields ) { + xhr[ i ] = s.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( s.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( s.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !s.crossDomain && !headers["X-Requested-With"] ) { + headers["X-Requested-With"] = "XMLHttpRequest"; + } + + // Need an extra try/catch for cross domain requests in Firefox 3 + try { + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + } catch( err ) {} + + // Do send the request + // This may raise an exception which is actually + // handled in jQuery.ajax (so no try/catch here) + xhr.send( ( s.hasContent && s.data ) || null ); + + // Listener + callback = function( _, isAbort ) { + var status, responseHeaders, statusText, responses; + + // Firefox throws exceptions when accessing properties + // of an xhr when a network error occurred + // http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE) + try { + + // Was never called and is aborted or complete + if ( callback && ( isAbort || xhr.readyState === 4 ) ) { + + // Only called once + callback = undefined; + + // Do not keep as active anymore + if ( handle ) { + xhr.onreadystatechange = jQuery.noop; + if ( xhrOnUnloadAbort ) { + delete xhrCallbacks[ handle ]; + } + } + + // If it's an abort + if ( isAbort ) { + // Abort it manually if needed + if ( xhr.readyState !== 4 ) { + xhr.abort(); + } + } else { + responses = {}; + status = xhr.status; + responseHeaders = xhr.getAllResponseHeaders(); + + // When requesting binary data, IE6-9 will throw an exception + // on any attempt to access responseText (#11426) + if ( typeof xhr.responseText === "string" ) { + responses.text = xhr.responseText; + } + + // Firefox throws an exception when accessing + // statusText for faulty cross-domain requests + try { + statusText = xhr.statusText; + } catch( e ) { + // We normalize with Webkit giving an empty statusText + statusText = ""; + } + + // Filter status for non standard behaviors + + // If the request is local and we have data: assume a success + // (success with no data won't get notified, that's the best we + // can do given current implementations) + if ( !status && s.isLocal && !s.crossDomain ) { + status = responses.text ? 200 : 404; + // IE - #1450: sometimes returns 1223 when it should be 204 + } else if ( status === 1223 ) { + status = 204; + } + } + } + } catch( firefoxAccessException ) { + if ( !isAbort ) { + complete( -1, firefoxAccessException ); + } + } + + // Call complete if needed + if ( responses ) { + complete( status, statusText, responses, responseHeaders ); + } + }; + + if ( !s.async ) { + // if we're in sync mode we fire the callback + callback(); + } else if ( xhr.readyState === 4 ) { + // (IE6 & IE7) if it's in cache and has been + // retrieved directly we need to fire the callback + setTimeout( callback ); + } else { + handle = ++xhrId; + if ( xhrOnUnloadAbort ) { + // Create the active xhrs callbacks list if needed + // and attach the unload handler + if ( !xhrCallbacks ) { + xhrCallbacks = {}; + jQuery( window ).unload( xhrOnUnloadAbort ); + } + // Add to list of active xhrs callbacks + xhrCallbacks[ handle ] = callback; + } + xhr.onreadystatechange = callback; + } + }, + + abort: function() { + if ( callback ) { + callback( undefined, true ); + } + } + }; + } + }); +} +var fxNow, timerId, + rfxtypes = /^(?:toggle|show|hide)$/, + rfxnum = new RegExp( "^(?:([+-])=|)(" + core_pnum + ")([a-z%]*)$", "i" ), + rrun = /queueHooks$/, + animationPrefilters = [ defaultPrefilter ], + tweeners = { + "*": [function( prop, value ) { + var tween = this.createTween( prop, value ), + target = tween.cur(), + parts = rfxnum.exec( value ), + unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) && + rfxnum.exec( jQuery.css( tween.elem, prop ) ), + scale = 1, + maxIterations = 20; + + if ( start && start[ 3 ] !== unit ) { + // Trust units reported by jQuery.css + unit = unit || start[ 3 ]; + + // Make sure we update the tween properties later on + parts = parts || []; + + // Iteratively approximate from a nonzero starting point + start = +target || 1; + + do { + // If previous iteration zeroed out, double until we get *something* + // Use a string for doubling factor so we don't accidentally see scale as unchanged below + scale = scale || ".5"; + + // Adjust and apply + start = start / scale; + jQuery.style( tween.elem, prop, start + unit ); + + // Update scale, tolerating zero or NaN from tween.cur() + // And breaking the loop if scale is unchanged or perfect, or if we've just had enough + } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations ); + } + + // Update tween properties + if ( parts ) { + tween.unit = unit; + tween.start = +start || +target || 0; + // If a +=/-= token was provided, we're doing a relative animation + tween.end = parts[ 1 ] ? + start + ( parts[ 1 ] + 1 ) * parts[ 2 ] : + +parts[ 2 ]; + } + + return tween; + }] + }; + +// Animations created synchronously will run synchronously +function createFxNow() { + setTimeout(function() { + fxNow = undefined; + }); + return ( fxNow = jQuery.now() ); +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( (tween = collection[ index ].call( animation, prop, value )) ) { + + // we're done with this property + return tween; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = animationPrefilters.length, + deferred = jQuery.Deferred().always( function() { + // don't match elem in the :animated selector + delete tick.elem; + }), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length ; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ]); + + if ( percent < 1 && length ) { + return remaining; + } else { + deferred.resolveWith( elem, [ animation ] ); + return false; + } + }, + animation = deferred.promise({ + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { specialEasing: {} }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + // if we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length ; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // resolve when we played the last frame + // otherwise, reject + if ( gotoEnd ) { + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + }), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length ; index++ ) { + result = animationPrefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( jQuery.isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + }) + ); + + // attach callbacks from options + return animation.progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = jQuery.camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( jQuery.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // not quite $.extend, this wont overwrite keys already present. + // also - reusing 'index' from above because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweener: function( props, callback ) { + if ( jQuery.isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.split(" "); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length ; index++ ) { + prop = props[ index ]; + tweeners[ prop ] = tweeners[ prop ] || []; + tweeners[ prop ].unshift( callback ); + } + }, + + prefilter: function( callback, prepend ) { + if ( prepend ) { + animationPrefilters.unshift( callback ); + } else { + animationPrefilters.push( callback ); + } + } +}); + +function defaultPrefilter( elem, props, opts ) { + /* jshint validthis: true */ + var prop, value, toggle, tween, hooks, oldfire, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHidden( elem ), + dataShow = jQuery._data( elem, "fxshow" ); + + // handle queue: false promises + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always(function() { + // doing this makes sure that the complete handler will be called + // before this completes + anim.always(function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + }); + }); + } + + // height/width overflow pass + if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) { + // Make sure that nothing sneaks out + // Record all 3 overflow attributes because IE does not + // change the overflow attribute when overflowX and + // overflowY are set to the same value + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Set display property to inline-block for height/width + // animations on inline elements that are having width/height animated + if ( jQuery.css( elem, "display" ) === "inline" && + jQuery.css( elem, "float" ) === "none" ) { + + // inline-level elements accept inline-block; + // block-level elements need to be inline with layout + if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) { + style.display = "inline-block"; + + } else { + style.zoom = 1; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + if ( !jQuery.support.shrinkWrapBlocks ) { + anim.always(function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + }); + } + } + + + // show/hide pass + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.exec( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + continue; + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + if ( !jQuery.isEmptyObject( orig ) ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = jQuery._data( elem, "fxshow", {} ); + } + + // store state if its toggle - enables .stop().toggle() to "reverse" + if ( toggle ) { + dataShow.hidden = !hidden; + } + if ( hidden ) { + jQuery( elem ).show(); + } else { + anim.done(function() { + jQuery( elem ).hide(); + }); + } + anim.done(function() { + var prop; + jQuery._removeData( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + }); + for ( prop in orig ) { + tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = tween.start; + if ( hidden ) { + tween.end = tween.start; + tween.start = prop === "width" || prop === "height" ? 1 : 0; + } + } + } + } +} + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || "swing"; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + if ( tween.elem[ tween.prop ] != null && + (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) { + return tween.elem[ tween.prop ]; + } + + // passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails + // so, simple values such as "10px" are parsed to Float. + // complex values such as "rotate(1rad)" are returned as is. + result = jQuery.css( tween.elem, tween.prop, "" ); + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + // use step hook for back compat - use cssHook if its there - use .style if its + // available and use plain properties where available + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 +// Panic based approach to setting things on disconnected nodes + +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.each([ "toggle", "show", "hide" ], function( i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +}); + +jQuery.fn.extend({ + fadeTo: function( speed, to, easing, callback ) { + + // show any hidden elements after setting opacity to 0 + return this.filter( isHidden ).css( "opacity", 0 ).show() + + // animate to the value specified + .end().animate({ opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + doAnimation.finish = function() { + anim.stop( true ); + }; + // Empty animations, or finishing resolves immediately + if ( empty || jQuery._data( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue && type !== false ) { + this.queue( type || "fx", [] ); + } + + return this.each(function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = jQuery._data( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) { + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // start the next in the queue if the last step wasn't forced + // timers currently will call their complete callbacks, which will dequeue + // but only if they were gotoEnd + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + }); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each(function() { + var index, + data = jQuery._data( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // enable finishing flag on private data + data.finish = true; + + // empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.cur && hooks.cur.finish ) { + hooks.cur.finish.call( this ); + } + + // look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // turn off finishing flag + delete data.finish; + }); + } +}); + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + attrs = { height: type }, + i = 0; + + // if we include width, step value is 1 to do all cssExpand values, + // if we don't include width, step value is 2 to skip over Left and Right + includeWidth = includeWidth? 1 : 0; + for( ; i < 4 ; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +// Generate shortcuts for custom animations +jQuery.each({ + slideDown: genFx("show"), + slideUp: genFx("hide"), + slideToggle: genFx("toggle"), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +}); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + jQuery.isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing + }; + + opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : + opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; + + // normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( jQuery.isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p*Math.PI ) / 2; + } +}; + +jQuery.timers = []; +jQuery.fx = Tween.prototype.init; +jQuery.fx.tick = function() { + var timer, + timers = jQuery.timers, + i = 0; + + fxNow = jQuery.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + // Checks the timer has not already been removed + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + if ( timer() && jQuery.timers.push( timer ) ) { + jQuery.fx.start(); + } +}; + +jQuery.fx.interval = 13; + +jQuery.fx.start = function() { + if ( !timerId ) { + timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval ); + } +}; + +jQuery.fx.stop = function() { + clearInterval( timerId ); + timerId = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + // Default speed + _default: 400 +}; + +// Back Compat <1.8 extension point +jQuery.fx.step = {}; + +if ( jQuery.expr && jQuery.expr.filters ) { + jQuery.expr.filters.animated = function( elem ) { + return jQuery.grep(jQuery.timers, function( fn ) { + return elem === fn.elem; + }).length; + }; +} +jQuery.fn.offset = function( options ) { + if ( arguments.length ) { + return options === undefined ? + this : + this.each(function( i ) { + jQuery.offset.setOffset( this, options, i ); + }); + } + + var docElem, win, + box = { top: 0, left: 0 }, + elem = this[ 0 ], + doc = elem && elem.ownerDocument; + + if ( !doc ) { + return; + } + + docElem = doc.documentElement; + + // Make sure it's not a disconnected DOM node + if ( !jQuery.contains( docElem, elem ) ) { + return box; + } + + // If we don't have gBCR, just use 0,0 rather than error + // BlackBerry 5, iOS 3 (original iPhone) + if ( typeof elem.getBoundingClientRect !== core_strundefined ) { + box = elem.getBoundingClientRect(); + } + win = getWindow( doc ); + return { + top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ), + left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 ) + }; +}; + +jQuery.offset = { + + setOffset: function( elem, options, i ) { + var position = jQuery.css( elem, "position" ); + + // set position first, in-case top/left are set even on static elem + if ( position === "static" ) { + elem.style.position = "relative"; + } + + var curElem = jQuery( elem ), + curOffset = curElem.offset(), + curCSSTop = jQuery.css( elem, "top" ), + curCSSLeft = jQuery.css( elem, "left" ), + calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1, + props = {}, curPosition = {}, curTop, curLeft; + + // need to be able to calculate position if either top or left is auto and position is either absolute or fixed + if ( calculatePosition ) { + curPosition = curElem.position(); + curTop = curPosition.top; + curLeft = curPosition.left; + } else { + curTop = parseFloat( curCSSTop ) || 0; + curLeft = parseFloat( curCSSLeft ) || 0; + } + + if ( jQuery.isFunction( options ) ) { + options = options.call( elem, i, curOffset ); + } + + if ( options.top != null ) { + props.top = ( options.top - curOffset.top ) + curTop; + } + if ( options.left != null ) { + props.left = ( options.left - curOffset.left ) + curLeft; + } + + if ( "using" in options ) { + options.using.call( elem, props ); + } else { + curElem.css( props ); + } + } +}; + + +jQuery.fn.extend({ + + position: function() { + if ( !this[ 0 ] ) { + return; + } + + var offsetParent, offset, + parentOffset = { top: 0, left: 0 }, + elem = this[ 0 ]; + + // fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is it's only offset parent + if ( jQuery.css( elem, "position" ) === "fixed" ) { + // we assume that getBoundingClientRect is available when computed position is fixed + offset = elem.getBoundingClientRect(); + } else { + // Get *real* offsetParent + offsetParent = this.offsetParent(); + + // Get correct offsets + offset = this.offset(); + if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) { + parentOffset = offsetParent.offset(); + } + + // Add offsetParent borders + parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true ); + parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true ); + } + + // Subtract parent offsets and element margins + // note: when an element has margin: auto the offsetLeft and marginLeft + // are the same in Safari causing offset.left to incorrectly be 0 + return { + top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ), + left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true) + }; + }, + + offsetParent: function() { + return this.map(function() { + var offsetParent = this.offsetParent || docElem; + while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position") === "static" ) ) { + offsetParent = offsetParent.offsetParent; + } + return offsetParent || docElem; + }); + } +}); + + +// Create scrollLeft and scrollTop methods +jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) { + var top = /Y/.test( prop ); + + jQuery.fn[ method ] = function( val ) { + return jQuery.access( this, function( elem, method, val ) { + var win = getWindow( elem ); + + if ( val === undefined ) { + return win ? (prop in win) ? win[ prop ] : + win.document.documentElement[ method ] : + elem[ method ]; + } + + if ( win ) { + win.scrollTo( + !top ? val : jQuery( win ).scrollLeft(), + top ? val : jQuery( win ).scrollTop() + ); + + } else { + elem[ method ] = val; + } + }, method, val, arguments.length, null ); + }; +}); + +function getWindow( elem ) { + return jQuery.isWindow( elem ) ? + elem : + elem.nodeType === 9 ? + elem.defaultView || elem.parentWindow : + false; +} +// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods +jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { + jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { + // margin is only for outerHeight, outerWidth + jQuery.fn[ funcName ] = function( margin, value ) { + var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), + extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); + + return jQuery.access( this, function( elem, type, value ) { + var doc; + + if ( jQuery.isWindow( elem ) ) { + // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there + // isn't a whole lot we can do. See pull request at this URL for discussion: + // https://github.com/jquery/jquery/pull/764 + return elem.document.documentElement[ "client" + name ]; + } + + // Get document width or height + if ( elem.nodeType === 9 ) { + doc = elem.documentElement; + + // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest + // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it. + return Math.max( + elem.body[ "scroll" + name ], doc[ "scroll" + name ], + elem.body[ "offset" + name ], doc[ "offset" + name ], + doc[ "client" + name ] + ); + } + + return value === undefined ? + // Get width or height on the element, requesting but not forcing parseFloat + jQuery.css( elem, type, extra ) : + + // Set width or height on the element + jQuery.style( elem, type, value, extra ); + }, type, chainable ? margin : undefined, chainable, null ); + }; + }); +}); +// Limit scope pollution from any deprecated API +// (function() { + +// The number of elements contained in the matched element set +jQuery.fn.size = function() { + return this.length; +}; + +jQuery.fn.andSelf = jQuery.fn.addBack; + +// })(); +if ( typeof module === "object" && typeof module.exports === "object" ) { + // Expose jQuery as module.exports in loaders that implement the Node + // module pattern (including browserify). Do not create the global, since + // the user will be storing it themselves locally, and globals are frowned + // upon in the Node module world. + module.exports = jQuery; +} else { + // Otherwise expose jQuery to the global object as usual + window.jQuery = window.$ = jQuery; + + // Register as a named AMD module, since jQuery can be concatenated with other + // files that may use define, but not via a proper concatenation script that + // understands anonymous AMD modules. A named AMD is safest and most robust + // way to register. Lowercase jquery is used because AMD module names are + // derived from file names, and jQuery is normally delivered in a lowercase + // file name. Do this after creating the global so that if an AMD module wants + // to call noConflict to hide this version of jQuery, it will work. + if ( typeof define === "function" && define.amd ) { + define( "jquery", [], function () { return jQuery; } ); + } +} + +})( window ); diff --git a/core/js/jquery-migrate-1.2.1.js b/core/js/jquery-migrate-1.2.1.js new file mode 100644 index 0000000000..25b6c81314 --- /dev/null +++ b/core/js/jquery-migrate-1.2.1.js @@ -0,0 +1,521 @@ +/*! + * jQuery Migrate - v1.2.1 - 2013-05-08 + * https://github.com/jquery/jquery-migrate + * Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors; Licensed MIT + */ +(function( jQuery, window, undefined ) { +// See http://bugs.jquery.com/ticket/13335 +// "use strict"; + + +var warnedAbout = {}; + +// List of warnings already given; public read only +jQuery.migrateWarnings = []; + +// Set to true to prevent console output; migrateWarnings still maintained +// jQuery.migrateMute = false; + +// Show a message on the console so devs know we're active +if ( !jQuery.migrateMute && window.console && window.console.log ) { + window.console.log("JQMIGRATE: Logging is active"); +} + +// Set to false to disable traces that appear with warnings +if ( jQuery.migrateTrace === undefined ) { + jQuery.migrateTrace = true; +} + +// Forget any warnings we've already given; public +jQuery.migrateReset = function() { + warnedAbout = {}; + jQuery.migrateWarnings.length = 0; +}; + +function migrateWarn( msg) { + var console = window.console; + if ( !warnedAbout[ msg ] ) { + warnedAbout[ msg ] = true; + jQuery.migrateWarnings.push( msg ); + if ( console && console.warn && !jQuery.migrateMute ) { + console.warn( "JQMIGRATE: " + msg ); + if ( jQuery.migrateTrace && console.trace ) { + console.trace(); + } + } + } +} + +function migrateWarnProp( obj, prop, value, msg ) { + if ( Object.defineProperty ) { + // On ES5 browsers (non-oldIE), warn if the code tries to get prop; + // allow property to be overwritten in case some other plugin wants it + try { + Object.defineProperty( obj, prop, { + configurable: true, + enumerable: true, + get: function() { + migrateWarn( msg ); + return value; + }, + set: function( newValue ) { + migrateWarn( msg ); + value = newValue; + } + }); + return; + } catch( err ) { + // IE8 is a dope about Object.defineProperty, can't warn there + } + } + + // Non-ES5 (or broken) browser; just set the property + jQuery._definePropertyBroken = true; + obj[ prop ] = value; +} + +if ( document.compatMode === "BackCompat" ) { + // jQuery has never supported or tested Quirks Mode + migrateWarn( "jQuery is not compatible with Quirks Mode" ); +} + + +var attrFn = jQuery( "<input/>", { size: 1 } ).attr("size") && jQuery.attrFn, + oldAttr = jQuery.attr, + valueAttrGet = jQuery.attrHooks.value && jQuery.attrHooks.value.get || + function() { return null; }, + valueAttrSet = jQuery.attrHooks.value && jQuery.attrHooks.value.set || + function() { return undefined; }, + rnoType = /^(?:input|button)$/i, + rnoAttrNodeType = /^[238]$/, + rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, + ruseDefault = /^(?:checked|selected)$/i; + +// jQuery.attrFn +migrateWarnProp( jQuery, "attrFn", attrFn || {}, "jQuery.attrFn is deprecated" ); + +jQuery.attr = function( elem, name, value, pass ) { + var lowerName = name.toLowerCase(), + nType = elem && elem.nodeType; + + if ( pass ) { + // Since pass is used internally, we only warn for new jQuery + // versions where there isn't a pass arg in the formal params + if ( oldAttr.length < 4 ) { + migrateWarn("jQuery.fn.attr( props, pass ) is deprecated"); + } + if ( elem && !rnoAttrNodeType.test( nType ) && + (attrFn ? name in attrFn : jQuery.isFunction(jQuery.fn[name])) ) { + return jQuery( elem )[ name ]( value ); + } + } + + // Warn if user tries to set `type`, since it breaks on IE 6/7/8; by checking + // for disconnected elements we don't warn on $( "<button>", { type: "button" } ). + if ( name === "type" && value !== undefined && rnoType.test( elem.nodeName ) && elem.parentNode ) { + migrateWarn("Can't change the 'type' of an input or button in IE 6/7/8"); + } + + // Restore boolHook for boolean property/attribute synchronization + if ( !jQuery.attrHooks[ lowerName ] && rboolean.test( lowerName ) ) { + jQuery.attrHooks[ lowerName ] = { + get: function( elem, name ) { + // Align boolean attributes with corresponding properties + // Fall back to attribute presence where some booleans are not supported + var attrNode, + property = jQuery.prop( elem, name ); + return property === true || typeof property !== "boolean" && + ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? + + name.toLowerCase() : + undefined; + }, + set: function( elem, value, name ) { + var propName; + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + // value is true since we know at this point it's type boolean and not false + // Set boolean attributes to the same name and set the DOM property + propName = jQuery.propFix[ name ] || name; + if ( propName in elem ) { + // Only set the IDL specifically if it already exists on the element + elem[ propName ] = true; + } + + elem.setAttribute( name, name.toLowerCase() ); + } + return name; + } + }; + + // Warn only for attributes that can remain distinct from their properties post-1.9 + if ( ruseDefault.test( lowerName ) ) { + migrateWarn( "jQuery.fn.attr('" + lowerName + "') may use property instead of attribute" ); + } + } + + return oldAttr.call( jQuery, elem, name, value ); +}; + +// attrHooks: value +jQuery.attrHooks.value = { + get: function( elem, name ) { + var nodeName = ( elem.nodeName || "" ).toLowerCase(); + if ( nodeName === "button" ) { + return valueAttrGet.apply( this, arguments ); + } + if ( nodeName !== "input" && nodeName !== "option" ) { + migrateWarn("jQuery.fn.attr('value') no longer gets properties"); + } + return name in elem ? + elem.value : + null; + }, + set: function( elem, value ) { + var nodeName = ( elem.nodeName || "" ).toLowerCase(); + if ( nodeName === "button" ) { + return valueAttrSet.apply( this, arguments ); + } + if ( nodeName !== "input" && nodeName !== "option" ) { + migrateWarn("jQuery.fn.attr('value', val) no longer sets properties"); + } + // Does not return so that setAttribute is also used + elem.value = value; + } +}; + + +var matched, browser, + oldInit = jQuery.fn.init, + oldParseJSON = jQuery.parseJSON, + // Note: XSS check is done below after string is trimmed + rquickExpr = /^([^<]*)(<[\w\W]+>)([^>]*)$/; + +// $(html) "looks like html" rule change +jQuery.fn.init = function( selector, context, rootjQuery ) { + var match; + + if ( selector && typeof selector === "string" && !jQuery.isPlainObject( context ) && + (match = rquickExpr.exec( jQuery.trim( selector ) )) && match[ 0 ] ) { + // This is an HTML string according to the "old" rules; is it still? + if ( selector.charAt( 0 ) !== "<" ) { + migrateWarn("$(html) HTML strings must start with '<' character"); + } + if ( match[ 3 ] ) { + migrateWarn("$(html) HTML text after last tag is ignored"); + } + // Consistently reject any HTML-like string starting with a hash (#9521) + // Note that this may break jQuery 1.6.x code that otherwise would work. + if ( match[ 0 ].charAt( 0 ) === "#" ) { + migrateWarn("HTML string cannot start with a '#' character"); + jQuery.error("JQMIGRATE: Invalid selector string (XSS)"); + } + // Now process using loose rules; let pre-1.8 play too + if ( context && context.context ) { + // jQuery object as context; parseHTML expects a DOM object + context = context.context; + } + if ( jQuery.parseHTML ) { + return oldInit.call( this, jQuery.parseHTML( match[ 2 ], context, true ), + context, rootjQuery ); + } + } + return oldInit.apply( this, arguments ); +}; +jQuery.fn.init.prototype = jQuery.fn; + +// Let $.parseJSON(falsy_value) return null +jQuery.parseJSON = function( json ) { + if ( !json && json !== null ) { + migrateWarn("jQuery.parseJSON requires a valid JSON string"); + return null; + } + return oldParseJSON.apply( this, arguments ); +}; + +jQuery.uaMatch = function( ua ) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) || + /(webkit)[ \/]([\w.]+)/.exec( ua ) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) || + /(msie) ([\w.]+)/.exec( ua ) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; +}; + +// Don't clobber any existing jQuery.browser in case it's different +if ( !jQuery.browser ) { + matched = jQuery.uaMatch( navigator.userAgent ); + browser = {}; + + if ( matched.browser ) { + browser[ matched.browser ] = true; + browser.version = matched.version; + } + + // Chrome is Webkit, but Webkit is also Safari. + if ( browser.chrome ) { + browser.webkit = true; + } else if ( browser.webkit ) { + browser.safari = true; + } + + jQuery.browser = browser; +} + +// Warn if the code tries to get jQuery.browser +migrateWarnProp( jQuery, "browser", jQuery.browser, "jQuery.browser is deprecated" ); + +jQuery.sub = function() { + function jQuerySub( selector, context ) { + return new jQuerySub.fn.init( selector, context ); + } + jQuery.extend( true, jQuerySub, this ); + jQuerySub.superclass = this; + jQuerySub.fn = jQuerySub.prototype = this(); + jQuerySub.fn.constructor = jQuerySub; + jQuerySub.sub = this.sub; + jQuerySub.fn.init = function init( selector, context ) { + if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { + context = jQuerySub( context ); + } + + return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); + }; + jQuerySub.fn.init.prototype = jQuerySub.fn; + var rootjQuerySub = jQuerySub(document); + migrateWarn( "jQuery.sub() is deprecated" ); + return jQuerySub; +}; + + +// Ensure that $.ajax gets the new parseJSON defined in core.js +jQuery.ajaxSetup({ + converters: { + "text json": jQuery.parseJSON + } +}); + + +var oldFnData = jQuery.fn.data; + +jQuery.fn.data = function( name ) { + var ret, evt, + elem = this[0]; + + // Handles 1.7 which has this behavior and 1.8 which doesn't + if ( elem && name === "events" && arguments.length === 1 ) { + ret = jQuery.data( elem, name ); + evt = jQuery._data( elem, name ); + if ( ( ret === undefined || ret === evt ) && evt !== undefined ) { + migrateWarn("Use of jQuery.fn.data('events') is deprecated"); + return evt; + } + } + return oldFnData.apply( this, arguments ); +}; + + +var rscriptType = /\/(java|ecma)script/i, + oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack; + +jQuery.fn.andSelf = function() { + migrateWarn("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()"); + return oldSelf.apply( this, arguments ); +}; + +// Since jQuery.clean is used internally on older versions, we only shim if it's missing +if ( !jQuery.clean ) { + jQuery.clean = function( elems, context, fragment, scripts ) { + // Set context per 1.8 logic + context = context || document; + context = !context.nodeType && context[0] || context; + context = context.ownerDocument || context; + + migrateWarn("jQuery.clean() is deprecated"); + + var i, elem, handleScript, jsTags, + ret = []; + + jQuery.merge( ret, jQuery.buildFragment( elems, context ).childNodes ); + + // Complex logic lifted directly from jQuery 1.8 + if ( fragment ) { + // Special handling of each script element + handleScript = function( elem ) { + // Check if we consider it executable + if ( !elem.type || rscriptType.test( elem.type ) ) { + // Detach the script and store it in the scripts array (if provided) or the fragment + // Return truthy to indicate that it has been handled + return scripts ? + scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) : + fragment.appendChild( elem ); + } + }; + + for ( i = 0; (elem = ret[i]) != null; i++ ) { + // Check if we're done after handling an executable script + if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) { + // Append to fragment and handle embedded scripts + fragment.appendChild( elem ); + if ( typeof elem.getElementsByTagName !== "undefined" ) { + // handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration + jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript ); + + // Splice the scripts into ret after their former ancestor and advance our index beyond them + ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) ); + i += jsTags.length; + } + } + } + } + + return ret; + }; +} + +var eventAdd = jQuery.event.add, + eventRemove = jQuery.event.remove, + eventTrigger = jQuery.event.trigger, + oldToggle = jQuery.fn.toggle, + oldLive = jQuery.fn.live, + oldDie = jQuery.fn.die, + ajaxEvents = "ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess", + rajaxEvent = new RegExp( "\\b(?:" + ajaxEvents + ")\\b" ), + rhoverHack = /(?:^|\s)hover(\.\S+|)\b/, + hoverHack = function( events ) { + if ( typeof( events ) !== "string" || jQuery.event.special.hover ) { + return events; + } + if ( rhoverHack.test( events ) ) { + migrateWarn("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'"); + } + return events && events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); + }; + +// Event props removed in 1.9, put them back if needed; no practical way to warn them +if ( jQuery.event.props && jQuery.event.props[ 0 ] !== "attrChange" ) { + jQuery.event.props.unshift( "attrChange", "attrName", "relatedNode", "srcElement" ); +} + +// Undocumented jQuery.event.handle was "deprecated" in jQuery 1.7 +if ( jQuery.event.dispatch ) { + migrateWarnProp( jQuery.event, "handle", jQuery.event.dispatch, "jQuery.event.handle is undocumented and deprecated" ); +} + +// Support for 'hover' pseudo-event and ajax event warnings +jQuery.event.add = function( elem, types, handler, data, selector ){ + if ( elem !== document && rajaxEvent.test( types ) ) { + migrateWarn( "AJAX events should be attached to document: " + types ); + } + eventAdd.call( this, elem, hoverHack( types || "" ), handler, data, selector ); +}; +jQuery.event.remove = function( elem, types, handler, selector, mappedTypes ){ + eventRemove.call( this, elem, hoverHack( types ) || "", handler, selector, mappedTypes ); +}; + +jQuery.fn.error = function() { + var args = Array.prototype.slice.call( arguments, 0); + migrateWarn("jQuery.fn.error() is deprecated"); + args.splice( 0, 0, "error" ); + if ( arguments.length ) { + return this.bind.apply( this, args ); + } + // error event should not bubble to window, although it does pre-1.7 + this.triggerHandler.apply( this, args ); + return this; +}; + +jQuery.fn.toggle = function( fn, fn2 ) { + + // Don't mess with animation or css toggles + if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) { + return oldToggle.apply( this, arguments ); + } + migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated"); + + // Save reference to arguments for access in closure + var args = arguments, + guid = fn.guid || jQuery.guid++, + i = 0, + toggler = function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + }; + + // link all the functions, so any of them can unbind this click handler + toggler.guid = guid; + while ( i < args.length ) { + args[ i++ ].guid = guid; + } + + return this.click( toggler ); +}; + +jQuery.fn.live = function( types, data, fn ) { + migrateWarn("jQuery.fn.live() is deprecated"); + if ( oldLive ) { + return oldLive.apply( this, arguments ); + } + jQuery( this.context ).on( types, this.selector, data, fn ); + return this; +}; + +jQuery.fn.die = function( types, fn ) { + migrateWarn("jQuery.fn.die() is deprecated"); + if ( oldDie ) { + return oldDie.apply( this, arguments ); + } + jQuery( this.context ).off( types, this.selector || "**", fn ); + return this; +}; + +// Turn global events into document-triggered events +jQuery.event.trigger = function( event, data, elem, onlyHandlers ){ + if ( !elem && !rajaxEvent.test( event ) ) { + migrateWarn( "Global events are undocumented and deprecated" ); + } + return eventTrigger.call( this, event, data, elem || document, onlyHandlers ); +}; +jQuery.each( ajaxEvents.split("|"), + function( _, name ) { + jQuery.event.special[ name ] = { + setup: function() { + var elem = this; + + // The document needs no shimming; must be !== for oldIE + if ( elem !== document ) { + jQuery.event.add( document, name + "." + jQuery.guid, function() { + jQuery.event.trigger( name, null, elem, true ); + }); + jQuery._data( this, name, jQuery.guid++ ); + } + return false; + }, + teardown: function() { + if ( this !== document ) { + jQuery.event.remove( document, name + "." + jQuery._data( this, name ) ); + } + return false; + } + }; + } +); + + +})( jQuery, window ); -- GitLab From 15f69737797c93f72b75971347590fe91a35fab4 Mon Sep 17 00:00:00 2001 From: Volkan Gezer <wakeup@users.noreply.github.com> Date: Wed, 23 Apr 2014 01:13:09 +0200 Subject: [PATCH 125/187] Add new jquery files to exclude list --- .scrutinizer.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index fa05b9b8a4..d1dbb20139 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -8,7 +8,9 @@ filter: - 'lib/l10n/*' - 'core/js/tests/lib/*.js' - 'core/js/tests/specs/*.js' + - 'core/js/jquery-1.10.0.js' - 'core/js/jquery-1.10.0.min.js' + - 'core/js/jquery-migrate-1.2.1.js' - 'core/js/jquery-migrate-1.2.1.min.js' - 'core/js/jquery-showpassword.js' - 'core/js/jquery-tipsy.js' -- GitLab From 3f453d164143d581d35ebc03bdb940c074098ba9 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Wed, 23 Apr 2014 01:56:35 -0400 Subject: [PATCH 126/187] [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 1 - apps/files/l10n/ast.php | 1 - apps/files/l10n/bg_BG.php | 1 - apps/files/l10n/bn_BD.php | 1 - apps/files/l10n/ca.php | 1 - apps/files/l10n/cs_CZ.php | 1 - apps/files/l10n/cy_GB.php | 1 - apps/files/l10n/da.php | 1 - apps/files/l10n/de.php | 1 - apps/files/l10n/de_CH.php | 1 - apps/files/l10n/de_DE.php | 1 - apps/files/l10n/el.php | 1 - apps/files/l10n/en_GB.php | 1 - apps/files/l10n/eo.php | 1 - apps/files/l10n/es.php | 1 - apps/files/l10n/es_AR.php | 1 - apps/files/l10n/es_CL.php | 1 - apps/files/l10n/es_CR.php | 7 + apps/files/l10n/es_MX.php | 1 - apps/files/l10n/et_EE.php | 1 - apps/files/l10n/eu.php | 1 - apps/files/l10n/fa.php | 1 - apps/files/l10n/fi_FI.php | 1 - apps/files/l10n/fr.php | 1 - apps/files/l10n/gl.php | 1 - apps/files/l10n/he.php | 1 - apps/files/l10n/hi.php | 1 - apps/files/l10n/hr.php | 1 - apps/files/l10n/hu_HU.php | 1 - apps/files/l10n/ia.php | 1 - apps/files/l10n/id.php | 1 - apps/files/l10n/is.php | 1 - apps/files/l10n/it.php | 1 - apps/files/l10n/ja.php | 1 - apps/files/l10n/ka_GE.php | 1 - apps/files/l10n/km.php | 1 - apps/files/l10n/ko.php | 1 - apps/files/l10n/ku_IQ.php | 1 - apps/files/l10n/lb.php | 1 - apps/files/l10n/lt_LT.php | 1 - apps/files/l10n/lv.php | 1 - apps/files/l10n/mk.php | 1 - apps/files/l10n/ms_MY.php | 1 - apps/files/l10n/nb_NO.php | 1 - apps/files/l10n/nl.php | 1 - apps/files/l10n/nn_NO.php | 1 - apps/files/l10n/oc.php | 1 - apps/files/l10n/or_IN.php | 7 + apps/files/l10n/pa.php | 1 - apps/files/l10n/pl.php | 1 - apps/files/l10n/pt_BR.php | 1 - apps/files/l10n/pt_PT.php | 1 - apps/files/l10n/ro.php | 1 - apps/files/l10n/ru.php | 1 - apps/files/l10n/si_LK.php | 1 - apps/files/l10n/sk_SK.php | 1 - apps/files/l10n/sl.php | 1 - apps/files/l10n/sq.php | 1 - apps/files/l10n/sr.php | 1 - apps/files/l10n/sr@latin.php | 1 - apps/files/l10n/sv.php | 1 - apps/files/l10n/ta_LK.php | 1 - apps/files/l10n/th_TH.php | 1 - apps/files/l10n/tr.php | 1 - apps/files/l10n/ug.php | 1 - apps/files/l10n/uk.php | 1 - apps/files/l10n/vi.php | 1 - apps/files/l10n/zh_CN.php | 1 - apps/files/l10n/zh_HK.php | 1 - apps/files/l10n/zh_TW.php | 1 - apps/files_encryption/l10n/sk_SK.php | 1 + apps/files_external/l10n/sk_SK.php | 8 + apps/user_ldap/l10n/en_GB.php | 1 + apps/user_ldap/l10n/es_CR.php | 6 + apps/user_ldap/l10n/or_IN.php | 6 + apps/user_ldap/l10n/sk_SK.php | 5 + core/l10n/af_ZA.php | 1 - core/l10n/ar.php | 1 - core/l10n/ast.php | 1 - core/l10n/be.php | 1 - core/l10n/bg_BG.php | 1 - core/l10n/bn_BD.php | 1 - core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 1 - core/l10n/cy_GB.php | 1 - core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/de_CH.php | 1 - core/l10n/de_DE.php | 1 - core/l10n/el.php | 1 - core/l10n/en_GB.php | 1 - core/l10n/eo.php | 1 - core/l10n/es.php | 1 - core/l10n/es_AR.php | 1 - core/l10n/es_CL.php | 1 - core/l10n/es_CR.php | 9 + core/l10n/es_MX.php | 1 - core/l10n/et_EE.php | 1 - core/l10n/eu.php | 1 - core/l10n/fa.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/he.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/id.php | 1 - core/l10n/is.php | 1 - core/l10n/it.php | 1 - core/l10n/ja.php | 1 - core/l10n/ka_GE.php | 1 - core/l10n/km.php | 1 - core/l10n/ko.php | 1 - core/l10n/lb.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/lv.php | 1 - core/l10n/mk.php | 1 - core/l10n/nb_NO.php | 1 - core/l10n/nl.php | 1 - core/l10n/nn_NO.php | 1 - core/l10n/oc.php | 1 - core/l10n/or_IN.php | 9 + core/l10n/pa.php | 1 - core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 1 - core/l10n/ro.php | 1 - core/l10n/ru.php | 1 - core/l10n/si_LK.php | 1 - core/l10n/sk_SK.php | 2 +- core/l10n/sl.php | 1 - core/l10n/sq.php | 1 - core/l10n/sr.php | 1 - core/l10n/sr@latin.php | 1 - core/l10n/sv.php | 1 - core/l10n/ta_LK.php | 1 - core/l10n/te.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/uk.php | 1 - core/l10n/vi.php | 1 - core/l10n/zh_CN.php | 1 - core/l10n/zh_HK.php | 1 - core/l10n/zh_TW.php | 1 - l10n/ach/core.po | 106 ++-- l10n/ach/files.po | 53 +- l10n/ach/settings.po | 6 +- l10n/ady/core.po | 106 ++-- l10n/ady/files.po | 53 +- l10n/ady/settings.po | 6 +- l10n/af_ZA/core.po | 74 ++- l10n/af_ZA/files.po | 53 +- l10n/af_ZA/settings.po | 6 +- l10n/ak/core.po | 106 ++-- l10n/ak/files.po | 53 +- l10n/ak/settings.po | 6 +- l10n/am_ET/core.po | 106 ++-- l10n/am_ET/files.po | 53 +- l10n/am_ET/settings.po | 6 +- l10n/ar/core.po | 72 ++- l10n/ar/files.po | 9 +- l10n/ar/settings.po | 8 +- l10n/ast/core.po | 36 +- l10n/ast/files.po | 9 +- l10n/ast/settings.po | 6 +- l10n/az/core.po | 106 ++-- l10n/az/files.po | 53 +- l10n/az/settings.po | 6 +- l10n/be/core.po | 72 ++- l10n/be/files.po | 7 +- l10n/be/settings.po | 6 +- l10n/bg_BG/core.po | 72 ++- l10n/bg_BG/files.po | 9 +- l10n/bg_BG/settings.po | 6 +- l10n/bn_BD/core.po | 72 ++- l10n/bn_BD/files.po | 9 +- l10n/bn_BD/settings.po | 6 +- l10n/bs/core.po | 106 ++-- l10n/bs/files.po | 53 +- l10n/bs/settings.po | 6 +- l10n/ca/core.po | 74 ++- l10n/ca/files.po | 9 +- l10n/ca/settings.po | 10 +- l10n/cs_CZ/core.po | 36 +- l10n/cs_CZ/files.po | 9 +- l10n/cs_CZ/settings.po | 15 +- l10n/cy_GB/core.po | 72 ++- l10n/cy_GB/files.po | 9 +- l10n/cy_GB/settings.po | 6 +- l10n/da/core.po | 72 ++- l10n/da/files.po | 9 +- l10n/da/settings.po | 8 +- l10n/de/core.po | 72 ++- l10n/de/files.po | 9 +- l10n/de/settings.po | 10 +- l10n/de_AT/core.po | 106 ++-- l10n/de_AT/files.po | 53 +- l10n/de_AT/settings.po | 6 +- l10n/de_CH/core.po | 72 ++- l10n/de_CH/files.po | 9 +- l10n/de_CH/settings.po | 6 +- l10n/de_DE/core.po | 72 ++- l10n/de_DE/files.po | 9 +- l10n/de_DE/settings.po | 10 +- l10n/el/core.po | 36 +- l10n/el/files.po | 11 +- l10n/el/settings.po | 10 +- l10n/en@pirate/core.po | 106 ++-- l10n/en@pirate/files.po | 53 +- l10n/en@pirate/settings.po | 6 +- l10n/en_GB/core.po | 74 ++- l10n/en_GB/files.po | 9 +- l10n/en_GB/lib.po | 42 +- l10n/en_GB/settings.po | 14 +- l10n/en_GB/user_ldap.po | 8 +- l10n/eo/core.po | 72 ++- l10n/eo/files.po | 9 +- l10n/eo/settings.po | 6 +- l10n/es/core.po | 74 ++- l10n/es/files.po | 9 +- l10n/es/settings.po | 10 +- l10n/es_AR/core.po | 72 ++- l10n/es_AR/files.po | 9 +- l10n/es_AR/settings.po | 8 +- l10n/es_CL/core.po | 72 ++- l10n/es_CL/files.po | 9 +- l10n/es_CL/settings.po | 6 +- l10n/es_CR/core.po | 805 +++++++++++++++++++++++++ l10n/es_CR/files.po | 409 +++++++++++++ l10n/es_CR/files_encryption.po | 201 +++++++ l10n/es_CR/files_external.po | 136 +++++ l10n/es_CR/files_sharing.po | 72 +++ l10n/es_CR/files_trashbin.po | 64 ++ l10n/es_CR/files_versions.po | 43 ++ l10n/es_CR/lib.po | 356 ++++++++++++ l10n/es_CR/settings.po | 838 +++++++++++++++++++++++++++ l10n/es_CR/user_ldap.po | 534 +++++++++++++++++ l10n/es_CR/user_webdavauth.po | 33 ++ l10n/es_MX/core.po | 72 ++- l10n/es_MX/files.po | 9 +- l10n/es_MX/settings.po | 8 +- l10n/et_EE/core.po | 72 ++- l10n/et_EE/files.po | 9 +- l10n/et_EE/settings.po | 8 +- l10n/eu/core.po | 72 ++- l10n/eu/files.po | 9 +- l10n/eu/settings.po | 8 +- l10n/eu_ES/core.po | 106 ++-- l10n/eu_ES/files.po | 53 +- l10n/eu_ES/settings.po | 6 +- l10n/fa/core.po | 72 ++- l10n/fa/files.po | 9 +- l10n/fa/settings.po | 8 +- l10n/fi_FI/core.po | 74 ++- l10n/fi_FI/files.po | 9 +- l10n/fi_FI/settings.po | 10 +- l10n/fr/core.po | 74 ++- l10n/fr/files.po | 9 +- l10n/fr/settings.po | 10 +- l10n/fr_CA/core.po | 106 ++-- l10n/fr_CA/files.po | 53 +- l10n/fr_CA/settings.po | 6 +- l10n/gl/core.po | 36 +- l10n/gl/files.po | 9 +- l10n/gl/settings.po | 10 +- l10n/he/core.po | 72 ++- l10n/he/files.po | 9 +- l10n/he/settings.po | 6 +- l10n/hi/core.po | 72 ++- l10n/hi/files.po | 9 +- l10n/hi/settings.po | 6 +- l10n/hr/core.po | 72 ++- l10n/hr/files.po | 9 +- l10n/hr/settings.po | 6 +- l10n/hu_HU/core.po | 72 ++- l10n/hu_HU/files.po | 9 +- l10n/hu_HU/settings.po | 8 +- l10n/hy/core.po | 106 ++-- l10n/hy/files.po | 53 +- l10n/hy/settings.po | 6 +- l10n/ia/core.po | 72 ++- l10n/ia/files.po | 9 +- l10n/ia/settings.po | 6 +- l10n/id/core.po | 72 ++- l10n/id/files.po | 9 +- l10n/id/settings.po | 8 +- l10n/is/core.po | 72 ++- l10n/is/files.po | 9 +- l10n/is/settings.po | 6 +- l10n/it/core.po | 74 ++- l10n/it/files.po | 9 +- l10n/it/settings.po | 10 +- l10n/ja/core.po | 72 ++- l10n/ja/files.po | 9 +- l10n/ja/settings.po | 8 +- l10n/jv/core.po | 106 ++-- l10n/jv/files.po | 53 +- l10n/jv/settings.po | 6 +- l10n/ka_GE/core.po | 72 ++- l10n/ka_GE/files.po | 9 +- l10n/ka_GE/settings.po | 6 +- l10n/km/core.po | 72 ++- l10n/km/files.po | 9 +- l10n/km/settings.po | 6 +- l10n/kn/core.po | 106 ++-- l10n/kn/files.po | 53 +- l10n/kn/settings.po | 6 +- l10n/ko/core.po | 72 ++- l10n/ko/files.po | 9 +- l10n/ko/settings.po | 8 +- l10n/ku_IQ/core.po | 72 ++- l10n/ku_IQ/files.po | 9 +- l10n/ku_IQ/settings.po | 6 +- l10n/lb/core.po | 72 ++- l10n/lb/files.po | 9 +- l10n/lb/settings.po | 6 +- l10n/lt_LT/core.po | 72 ++- l10n/lt_LT/files.po | 9 +- l10n/lt_LT/settings.po | 8 +- l10n/lv/core.po | 72 ++- l10n/lv/files.po | 9 +- l10n/lv/settings.po | 6 +- l10n/mk/core.po | 72 ++- l10n/mk/files.po | 9 +- l10n/mk/settings.po | 8 +- l10n/ml/core.po | 106 ++-- l10n/ml/files.po | 53 +- l10n/ml/settings.po | 6 +- l10n/ml_IN/core.po | 106 ++-- l10n/ml_IN/files.po | 53 +- l10n/ml_IN/settings.po | 6 +- l10n/mn/core.po | 106 ++-- l10n/mn/files.po | 53 +- l10n/mn/settings.po | 6 +- l10n/ms_MY/core.po | 72 ++- l10n/ms_MY/files.po | 9 +- l10n/ms_MY/settings.po | 6 +- l10n/my_MM/core.po | 106 ++-- l10n/my_MM/files.po | 53 +- l10n/my_MM/settings.po | 6 +- l10n/nb_NO/core.po | 72 ++- l10n/nb_NO/files.po | 9 +- l10n/nb_NO/settings.po | 8 +- l10n/nds/core.po | 106 ++-- l10n/nds/files.po | 53 +- l10n/nds/settings.po | 6 +- l10n/ne/core.po | 106 ++-- l10n/ne/files.po | 53 +- l10n/ne/settings.po | 6 +- l10n/nl/core.po | 74 ++- l10n/nl/files.po | 9 +- l10n/nl/settings.po | 10 +- l10n/nn_NO/core.po | 72 ++- l10n/nn_NO/files.po | 9 +- l10n/nn_NO/settings.po | 6 +- l10n/nqo/core.po | 106 ++-- l10n/nqo/files.po | 53 +- l10n/nqo/settings.po | 6 +- l10n/oc/core.po | 72 ++- l10n/oc/files.po | 9 +- l10n/oc/settings.po | 6 +- l10n/or_IN/core.po | 805 +++++++++++++++++++++++++ l10n/or_IN/files.po | 409 +++++++++++++ l10n/or_IN/files_encryption.po | 201 +++++++ l10n/or_IN/files_external.po | 136 +++++ l10n/or_IN/files_sharing.po | 72 +++ l10n/or_IN/files_trashbin.po | 64 ++ l10n/or_IN/files_versions.po | 43 ++ l10n/or_IN/lib.po | 356 ++++++++++++ l10n/or_IN/settings.po | 838 +++++++++++++++++++++++++++ l10n/or_IN/user_ldap.po | 534 +++++++++++++++++ l10n/or_IN/user_webdavauth.po | 33 ++ l10n/pa/core.po | 72 ++- l10n/pa/files.po | 9 +- l10n/pa/settings.po | 6 +- l10n/pl/core.po | 74 ++- l10n/pl/files.po | 9 +- l10n/pl/settings.po | 10 +- l10n/pt_BR/core.po | 74 ++- l10n/pt_BR/files.po | 9 +- l10n/pt_BR/lib.po | 42 +- l10n/pt_BR/settings.po | 10 +- l10n/pt_PT/core.po | 72 ++- l10n/pt_PT/files.po | 9 +- l10n/pt_PT/settings.po | 8 +- l10n/ro/core.po | 72 ++- l10n/ro/files.po | 9 +- l10n/ro/settings.po | 6 +- l10n/ru/core.po | 72 ++- l10n/ru/files.po | 9 +- l10n/ru/settings.po | 8 +- l10n/si_LK/core.po | 72 ++- l10n/si_LK/files.po | 9 +- l10n/si_LK/settings.po | 6 +- l10n/sk/core.po | 106 ++-- l10n/sk/files.po | 53 +- l10n/sk/settings.po | 6 +- l10n/sk_SK/core.po | 74 ++- l10n/sk_SK/files.po | 11 +- l10n/sk_SK/files_encryption.po | 52 +- l10n/sk_SK/files_external.po | 34 +- l10n/sk_SK/settings.po | 8 +- l10n/sk_SK/user_ldap.po | 16 +- l10n/sl/core.po | 36 +- l10n/sl/files.po | 9 +- l10n/sl/settings.po | 14 +- l10n/sq/core.po | 72 ++- l10n/sq/files.po | 9 +- l10n/sq/settings.po | 6 +- l10n/sr/core.po | 72 ++- l10n/sr/files.po | 9 +- l10n/sr/settings.po | 6 +- l10n/sr@latin/core.po | 72 ++- l10n/sr@latin/files.po | 9 +- l10n/sr@latin/settings.po | 6 +- l10n/su/core.po | 106 ++-- l10n/su/files.po | 53 +- l10n/su/settings.po | 6 +- l10n/sv/core.po | 74 ++- l10n/sv/files.po | 11 +- l10n/sv/settings.po | 10 +- l10n/sw_KE/core.po | 106 ++-- l10n/sw_KE/files.po | 53 +- l10n/sw_KE/settings.po | 6 +- l10n/ta_LK/core.po | 72 ++- l10n/ta_LK/files.po | 9 +- l10n/ta_LK/settings.po | 6 +- l10n/te/core.po | 72 ++- l10n/te/files.po | 7 +- l10n/te/settings.po | 6 +- l10n/templates/core.pot | 32 +- l10n/templates/files.pot | 5 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 10 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 4 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 72 ++- l10n/th_TH/files.po | 9 +- l10n/th_TH/settings.po | 6 +- l10n/tr/core.po | 36 +- l10n/tr/files.po | 11 +- l10n/tr/settings.po | 10 +- l10n/tzm/core.po | 106 ++-- l10n/tzm/files.po | 53 +- l10n/tzm/settings.po | 6 +- l10n/ug/core.po | 72 ++- l10n/ug/files.po | 9 +- l10n/ug/settings.po | 6 +- l10n/uk/core.po | 72 ++- l10n/uk/files.po | 11 +- l10n/uk/settings.po | 8 +- l10n/ur/core.po | 106 ++-- l10n/ur/files.po | 53 +- l10n/ur/settings.po | 6 +- l10n/ur_PK/core.po | 72 ++- l10n/ur_PK/files.po | 7 +- l10n/ur_PK/settings.po | 6 +- l10n/uz/core.po | 106 ++-- l10n/uz/files.po | 53 +- l10n/uz/settings.po | 6 +- l10n/vi/core.po | 72 ++- l10n/vi/files.po | 9 +- l10n/vi/settings.po | 6 +- l10n/zh_CN/core.po | 34 +- l10n/zh_CN/files.po | 9 +- l10n/zh_CN/settings.po | 8 +- l10n/zh_HK/core.po | 72 ++- l10n/zh_HK/files.po | 9 +- l10n/zh_HK/settings.po | 6 +- l10n/zh_TW/core.po | 72 ++- l10n/zh_TW/files.po | 9 +- l10n/zh_TW/settings.po | 8 +- lib/l10n/es_CR.php | 8 + lib/l10n/or_IN.php | 8 + settings/l10n/ar.php | 1 - settings/l10n/ca.php | 1 - settings/l10n/cs_CZ.php | 3 +- settings/l10n/da.php | 1 - settings/l10n/de.php | 1 - settings/l10n/de_DE.php | 1 - settings/l10n/el.php | 1 - settings/l10n/en_GB.php | 4 +- settings/l10n/es.php | 1 - settings/l10n/es_AR.php | 1 - settings/l10n/es_MX.php | 1 - settings/l10n/et_EE.php | 1 - settings/l10n/eu.php | 1 - settings/l10n/fa.php | 1 - settings/l10n/fi_FI.php | 1 - settings/l10n/fr.php | 1 - settings/l10n/gl.php | 1 - settings/l10n/hu_HU.php | 1 - settings/l10n/id.php | 1 - settings/l10n/it.php | 1 - settings/l10n/ja.php | 1 - settings/l10n/ko.php | 1 - settings/l10n/lt_LT.php | 1 - settings/l10n/mk.php | 1 - settings/l10n/nb_NO.php | 1 - settings/l10n/nl.php | 1 - settings/l10n/pl.php | 1 - settings/l10n/pt_BR.php | 1 - settings/l10n/pt_PT.php | 1 - settings/l10n/ru.php | 1 - settings/l10n/sk_SK.php | 1 - settings/l10n/sl.php | 4 +- settings/l10n/sv.php | 1 - settings/l10n/tr.php | 1 - settings/l10n/zh_CN.php | 1 - settings/l10n/zh_TW.php | 1 - 516 files changed, 12295 insertions(+), 5695 deletions(-) create mode 100644 apps/files/l10n/es_CR.php create mode 100644 apps/files/l10n/or_IN.php create mode 100644 apps/user_ldap/l10n/es_CR.php create mode 100644 apps/user_ldap/l10n/or_IN.php create mode 100644 core/l10n/es_CR.php create mode 100644 core/l10n/or_IN.php create mode 100644 l10n/es_CR/core.po create mode 100644 l10n/es_CR/files.po create mode 100644 l10n/es_CR/files_encryption.po create mode 100644 l10n/es_CR/files_external.po create mode 100644 l10n/es_CR/files_sharing.po create mode 100644 l10n/es_CR/files_trashbin.po create mode 100644 l10n/es_CR/files_versions.po create mode 100644 l10n/es_CR/lib.po create mode 100644 l10n/es_CR/settings.po create mode 100644 l10n/es_CR/user_ldap.po create mode 100644 l10n/es_CR/user_webdavauth.po create mode 100644 l10n/or_IN/core.po create mode 100644 l10n/or_IN/files.po create mode 100644 l10n/or_IN/files_encryption.po create mode 100644 l10n/or_IN/files_external.po create mode 100644 l10n/or_IN/files_sharing.po create mode 100644 l10n/or_IN/files_trashbin.po create mode 100644 l10n/or_IN/files_versions.po create mode 100644 l10n/or_IN/lib.po create mode 100644 l10n/or_IN/settings.po create mode 100644 l10n/or_IN/user_ldap.po create mode 100644 l10n/or_IN/user_webdavauth.po create mode 100644 lib/l10n/es_CR.php create mode 100644 lib/l10n/or_IN.php diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index e7c081b1c4..9a78e3bbff 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -44,7 +44,6 @@ $TRANSLATIONS = array( "Size" => "حجم", "Modified" => "معدل", "%s could not be renamed" => "%s لا يمكن إعادة تسميته. ", -"Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", "max. possible: " => "الحد الأقصى المسموح به", diff --git a/apps/files/l10n/ast.php b/apps/files/l10n/ast.php index c0b32e8e0c..5c6af60be3 100644 --- a/apps/files/l10n/ast.php +++ b/apps/files/l10n/ast.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Nome", "Size" => "Tamañu", -"Upload" => "Xubir", "Save" => "Guardar", "New folder" => "Nueva carpeta", "Folder" => "Carpeta", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 2418010cdd..d9cad21e79 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -20,7 +20,6 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"Upload" => "Качване", "Maximum upload size" => "Максимален размер за качване", "0 is unlimited" => "Ползвайте 0 за без ограничения", "Save" => "Запис", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 667a68bb62..4d71d7dacd 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", -"Upload" => "আপলোড", "File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", "max. possible: " => "অনুমোদিত সর্বোচ্চ আকার", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 8ef9b76448..e93f1b644a 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificat", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat", "%s could not be renamed" => "%s no es pot canviar el nom", -"Upload" => "Puja", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", "max. possible: " => "màxim possible:", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 8aea17a705..e999a58ec6 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Upraveno", "Invalid folder name. Usage of 'Shared' is reserved." => "Neplatný název složky. Použití 'Shared' je rezervováno.", "%s could not be renamed" => "%s nemůže být přejmenován", -"Upload" => "Odeslat", "File handling" => "Zacházení se soubory", "Maximum upload size" => "Maximální velikost pro odesílání", "max. possible: " => "největší možná: ", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index b27e4c3bfc..f0c12b2fde 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", -"Upload" => "Llwytho i fyny", "File handling" => "Trafod ffeiliau", "Maximum upload size" => "Maint mwyaf llwytho i fyny", "max. possible: " => "mwyaf. posib:", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 6a7ea4745c..522ec8dff8 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Ændret", "Invalid folder name. Usage of 'Shared' is reserved." => "Ugyldig mappenavn. 'Shared' er reserveret.", "%s could not be renamed" => "%s kunne ikke omdøbes", -"Upload" => "Upload", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimal upload-størrelse", "max. possible: " => "max. mulige: ", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 401ee243f2..c1f5f3a936 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_CH.php b/apps/files/l10n/de_CH.php index f797be99e9..907b9e1b67 100644 --- a/apps/files/l10n/de_CH.php +++ b/apps/files/l10n/de_CH.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Size" => "Grösse", "Modified" => "Geändert", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Grösse", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 4768faa97d..83d8c253ee 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index cf2022c2d7..90d73cb411 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Τροποποιήθηκε", "Invalid folder name. Usage of 'Shared' is reserved." => "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα.", "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", -"Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος αποστολής", "max. possible: " => "μέγιστο δυνατό:", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index 705f6b99b0..d57f943453 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modified", "Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", -"Upload" => "Upload", "File handling" => "File handling", "Maximum upload size" => "Maximum upload size", "max. possible: " => "max. possible: ", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index a6e0d55317..dfa6f7ec03 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "Size" => "Grando", "Modified" => "Modifita", "%s could not be renamed" => "%s ne povis alinomiĝi", -"Upload" => "Alŝuti", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", "max. possible: " => "maks. ebla: ", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 10a378c371..5ea572956e 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", -"Upload" => "Subir", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index f78615fc92..19a71e0c9a 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de directorio inválido. 'Shared' está reservado.", "%s could not be renamed" => "No se pudo renombrar %s", -"Upload" => "Subir", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php index 8e051d1c38..98606b4cd8 100644 --- a/apps/files/l10n/es_CL.php +++ b/apps/files/l10n/es_CL.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "Subir", "Download" => "Descargar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_CR.php b/apps/files/l10n/es_CR.php new file mode 100644 index 0000000000..0157af093e --- /dev/null +++ b/apps/files/l10n/es_CR.php @@ -0,0 +1,7 @@ +<?php +$TRANSLATIONS = array( +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index ea7db0d7b9..a55a70c166 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", -"Upload" => "Subir", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 4f0614feb5..ec7c4af85b 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Muudetud", "Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", -"Upload" => "Lae üles", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", "max. possible: " => "maks. võimalik: ", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index d59dd39628..26e2a34e4a 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Aldatuta", "Invalid folder name. Usage of 'Shared' is reserved." => "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago.", "%s could not be renamed" => "%s ezin da berrizendatu", -"Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", "Maximum upload size" => "Igo daitekeen gehienezko tamaina", "max. possible: " => "max, posiblea:", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 2e8f6255e2..4d2a929195 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Size" => "اندازه", "Modified" => "تاریخ", "%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", -"Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", "Maximum upload size" => "حداکثر اندازه بارگزاری", "max. possible: " => "حداکثرمقدارممکن:", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index b6383c144d..530a68e536 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -60,7 +60,6 @@ $TRANSLATIONS = array( "Modified" => "Muokattu", "Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", "%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", -"Upload" => "Lähetä", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " => "suurin mahdollinen:", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 0eed6a70f9..0ae5180b66 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modifié", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", -"Upload" => "Envoyer", "File handling" => "Gestion des fichiers", "Maximum upload size" => "Taille max. d'envoi", "max. possible: " => "Max. possible :", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 9fe6546de5..18e0481a2a 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", -"Upload" => "Enviar", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", "max. possible: " => "máx. posíbel: ", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index ab8640a91d..6279e675db 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", -"Upload" => "העלאה", "File handling" => "טיפול בקבצים", "Maximum upload size" => "גודל העלאה מקסימלי", "max. possible: " => "המרבי האפשרי: ", diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index b4234b5137..13fded2671 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "अपलोड ", "Save" => "सहेजें" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index ef978e6cfb..0876dcdd1e 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja promjena", -"Upload" => "Učitaj", "File handling" => "datoteka za rukovanje", "Maximum upload size" => "Maksimalna veličina prijenosa", "max. possible: " => "maksimalna moguća: ", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index e4ab355c9b..0f9a903e2b 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Módosítva", "Invalid folder name. Usage of 'Shared' is reserved." => "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés.", "%s could not be renamed" => "%s átnevezése nem sikerült", -"Upload" => "Feltöltés", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", "max. possible: " => "max. lehetséges: ", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 420e48395c..da1cafaa29 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -12,7 +12,6 @@ $TRANSLATIONS = array( "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", -"Upload" => "Incargar", "Maximum upload size" => "Dimension maxime de incargamento", "Save" => "Salveguardar", "New" => "Nove", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 8356c5465e..40699ba886 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Modified" => "Dimodifikasi", "Invalid folder name. Usage of 'Shared' is reserved." => "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan.", "%s could not be renamed" => "%s tidak dapat diubah nama", -"Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", "max. possible: " => "Kemungkinan maks.:", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 00503028e0..b8e23b6a30 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", -"Upload" => "Senda inn", "File handling" => "Meðhöndlun skrár", "Maximum upload size" => "Hámarks stærð innsendingar", "max. possible: " => "hámark mögulegt: ", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 9539496a3f..64abf0bfed 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificato", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", -"Upload" => "Carica", "File handling" => "Gestione file", "Maximum upload size" => "Dimensione massima upload", "max. possible: " => "numero mass.: ", diff --git a/apps/files/l10n/ja.php b/apps/files/l10n/ja.php index dd8d4e4e3f..7606a8d4b1 100644 --- a/apps/files/l10n/ja.php +++ b/apps/files/l10n/ja.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "更新日時", "Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダー名。「Shared」の利用は予約されています。", "%s could not be renamed" => "%sの名前を変更できませんでした", -"Upload" => "アップロード", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", "max. possible: " => "最大容量: ", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index f9749d72bb..ad3a4bff1f 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", -"Upload" => "ატვირთვა", "File handling" => "ფაილის დამუშავება", "Maximum upload size" => "მაქსიმუმ ატვირთის ზომა", "max. possible: " => "მაქს. შესაძლებელი:", diff --git a/apps/files/l10n/km.php b/apps/files/l10n/km.php index a7a01ccab9..30bb2998af 100644 --- a/apps/files/l10n/km.php +++ b/apps/files/l10n/km.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "ឈ្មោះ", "Size" => "ទំហំ", -"Upload" => "ផ្ទុកឡើង", "Save" => "រក្សាទុក", "New folder" => "ថតថ្មី", "Folder" => "ថត", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index c0f0d7d445..3c8a72097f 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "수정됨", "Invalid folder name. Usage of 'Shared' is reserved." => "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다.", "%s could not be renamed" => "%s의 이름을 변경할 수 없습니다", -"Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", "max. possible: " => "최대 가능:", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 6ec5819d38..1c9d615ee7 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "ناو", -"Upload" => "بارکردن", "Save" => "پاشکهوتکردن", "Folder" => "بوخچه", "Download" => "داگرتن" diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 38b5d672d0..27dc936600 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -18,7 +18,6 @@ $TRANSLATIONS = array( "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", -"Upload" => "Eroplueden", "File handling" => "Fichier handling", "Maximum upload size" => "Maximum Upload Gréisst ", "max. possible: " => "max. méiglech:", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 50097e5f36..fee09cf2d8 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Pakeista", "Invalid folder name. Usage of 'Shared' is reserved." => "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas.", "%s could not be renamed" => "%s negali būti pervadintas", -"Upload" => "Įkelti", "File handling" => "Failų tvarkymas", "Maximum upload size" => "Maksimalus įkeliamo failo dydis", "max. possible: " => "maks. galima:", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index fcb1a59aa3..71f3976816 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Size" => "Izmērs", "Modified" => "Mainīts", "%s could not be renamed" => "%s nevar tikt pārsaukts", -"Upload" => "Augšupielādēt", "File handling" => "Datņu pārvaldība", "Maximum upload size" => "Maksimālais datņu augšupielādes apjoms", "max. possible: " => "maksimālais iespējamais:", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index fa6efd1aff..c303e51511 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -49,7 +49,6 @@ $TRANSLATIONS = array( "Size" => "Големина", "Modified" => "Променето", "%s could not be renamed" => "%s не може да биде преименуван", -"Upload" => "Подигни", "File handling" => "Ракување со датотеки", "Maximum upload size" => "Максимална големина за подигање", "max. possible: " => "макс. можно:", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index df0054c3d0..af42a3838b 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Nama", "Size" => "Saiz", "Modified" => "Dimodifikasi", -"Upload" => "Muat naik", "File handling" => "Pengendalian fail", "Maximum upload size" => "Saiz maksimum muat naik", "max. possible: " => "maksimum:", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index f1e2c2edee..878d4df822 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Endret", "Invalid folder name. Usage of 'Shared' is reserved." => "Ulovlig mappenavn. Bruken av 'Shared' er reservert.", "%s could not be renamed" => "Kunne ikke gi nytt navn til %s", -"Upload" => "Last opp", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimum opplastingsstørrelse", "max. possible: " => "max. mulige:", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 946c7905b2..779a651602 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Aangepast", "Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", -"Upload" => "Uploaden", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", "max. possible: " => "max. mogelijk: ", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index bd17fa3386..693bfccb09 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -42,7 +42,6 @@ $TRANSLATIONS = array( "Size" => "Storleik", "Modified" => "Endra", "%s could not be renamed" => "Klarte ikkje å omdøypa på %s", -"Upload" => "Last opp", "File handling" => "Filhandtering", "Maximum upload size" => "Maksimal opplastingsstorleik", "max. possible: " => "maks. moglege:", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 7a24c81974..f3d790a533 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", -"Upload" => "Amontcarga", "File handling" => "Manejament de fichièr", "Maximum upload size" => "Talha maximum d'amontcargament", "max. possible: " => "max. possible: ", diff --git a/apps/files/l10n/or_IN.php b/apps/files/l10n/or_IN.php new file mode 100644 index 0000000000..0157af093e --- /dev/null +++ b/apps/files/l10n/or_IN.php @@ -0,0 +1,7 @@ +<?php +$TRANSLATIONS = array( +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/pa.php b/apps/files/l10n/pa.php index b18d2071e0..3cf8724249 100644 --- a/apps/files/l10n/pa.php +++ b/apps/files/l10n/pa.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "ਅੱਪਲੋਡ", "Cancel upload" => "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ", "Download" => "ਡਾਊਨਲੋਡ", "Delete" => "ਹਟਾਓ" diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 83126b3ea0..5a5b057e63 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modyfikacja", "Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", -"Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", "max. possible: " => "maks. możliwy:", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 48c32e8887..35d2d55170 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", -"Upload" => "Upload", "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 0afb6b5015..8c58c6458c 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada.", "%s could not be renamed" => "%s não pode ser renomeada", -"Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", "max. possible: " => "max. possivel: ", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 6cda724df4..998e58375e 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "Size" => "Mărime", "Modified" => "Modificat", "%s could not be renamed" => "%s nu a putut fi redenumit", -"Upload" => "Încărcă", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", "max. possible: " => "max. posibil:", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 17f06c6a20..4586a73dc3 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Дата изменения", "Invalid folder name. Usage of 'Shared' is reserved." => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "%s could not be renamed" => "%s не может быть переименован", -"Upload" => "Загрузка", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", "max. possible: " => "макс. возможно: ", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index a2809ee2f5..ff6672f711 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "නම", "Size" => "ප්රමාණය", "Modified" => "වෙනස් කළ", -"Upload" => "උඩුගත කරන්න", "File handling" => "ගොනු පරිහරණය", "Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්රමාණය", "max. possible: " => "හැකි උපරිමය:", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index cffb89c294..2e079b4ce7 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Upravené", "Invalid folder name. Usage of 'Shared' is reserved." => "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené.", "%s could not be renamed" => "%s nemohol byť premenovaný", -"Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru", "max. possible: " => "najväčšie možné:", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fcb358bd7b..fbd667226c 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Spremenjeno", "Invalid folder name. Usage of 'Shared' is reserved." => "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo.", "%s could not be renamed" => "%s ni mogoče preimenovati", -"Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", "max. possible: " => "največ mogoče:", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index ade4f769fa..a7f1cb3413 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Size" => "Madhësia", "Modified" => "Ndryshuar", "%s could not be renamed" => "Nuk është i mundur riemërtimi i %s", -"Upload" => "Ngarko", "File handling" => "Trajtimi i Skedarëve", "Maximum upload size" => "Madhësia maksimale e nagarkimit", "max. possible: " => "maks i mundshëm", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 44669e8167..866d8dbdd0 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", -"Upload" => "Отпреми", "File handling" => "Управљање датотекама", "Maximum upload size" => "Највећа величина датотеке", "max. possible: " => "највећа величина:", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index a5c74860f7..38039a19fc 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", -"Upload" => "Pošalji", "Maximum upload size" => "Maksimalna veličina pošiljke", "Save" => "Snimi", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f420216228..811e568fef 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Ändrad", "Invalid folder name. Usage of 'Shared' is reserved." => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "%s could not be renamed" => "%s kunde inte namnändras", -"Upload" => "Ladda upp", "File handling" => "Filhantering", "Maximum upload size" => "Maximal storlek att ladda upp", "max. possible: " => "max. möjligt:", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 257aacf147..0ab17785b9 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -22,7 +22,6 @@ $TRANSLATIONS = array( "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", -"Upload" => "பதிவேற்றுக", "File handling" => "கோப்பு கையாளுதல்", "Maximum upload size" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ", "max. possible: " => "ஆகக் கூடியது:", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 8f5f15f2a3..f0fd29da7e 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", -"Upload" => "อัพโหลด", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", "max. possible: " => "จำนวนสูงสุดที่สามารถทำได้: ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 1f69dca628..46f5af3071 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Değiştirilme", "Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", -"Upload" => "Yükle", "File handling" => "Dosya işlemleri", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 13354c153b..58ccba94c1 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Name" => "ئاتى", "Size" => "چوڭلۇقى", "Modified" => "ئۆزگەرتكەن", -"Upload" => "يۈكلە", "Save" => "ساقلا", "New" => "يېڭى", "Text file" => "تېكىست ھۆججەت", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 905d27c3ee..5643dedb9d 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Size" => "Розмір", "Modified" => "Змінено", "%s could not be renamed" => "%s не може бути перейменований", -"Upload" => "Вивантажити", "File handling" => "Робота з файлами", "Maximum upload size" => "Максимальний розмір відвантажень", "max. possible: " => "макс.можливе:", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 55f9bd2594..058add4bb7 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Size" => "Kích cỡ", "Modified" => "Thay đổi", "%s could not be renamed" => "%s không thể đổi tên", -"Upload" => "Tải lên", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", "max. possible: " => "tối đa cho phép:", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 068f97c1dd..59623bffd1 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "修改日期", "Invalid folder name. Usage of 'Shared' is reserved." => "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹", "%s could not be renamed" => "%s 不能被重命名", -"Upload" => "上传", "File handling" => "文件处理", "Maximum upload size" => "最大上传大小", "max. possible: " => "最大允许: ", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index eaa32cd537..7a701166e6 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "名稱", -"Upload" => "上傳", "Save" => "儲存", "Download" => "下載", "Delete" => "刪除" diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 154efd563f..3668b37d64 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Size" => "大小", "Modified" => "修改時間", "%s could not be renamed" => "無法重新命名 %s", -"Upload" => "上傳", "File handling" => "檔案處理", "Maximum upload size" => "上傳限制", "max. possible: " => "最大允許:", diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index 5fcd0a9f06..53ee2bc030 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "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." => "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná.", "Following users are not set up for encryption:" => "Nasledujúci používatelia nie sú nastavení pre šifrovanie:", "Initial encryption started... This can take some time. Please wait." => "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. Čakajte prosím.", +"Initial encryption running... Please try again later." => "Počiatočné šifrovanie beží... Skúste to neskôr znovu.", "Go directly to your " => "Choďte priamo do vášho", "personal settings" => "osobné nastavenia", "Encryption" => "Šifrovanie", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index de32fb5ffb..96f6241e5f 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -6,17 +6,25 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Zadajte platný kľúč aplikácie a heslo Dropbox", "Error configuring Google Drive storage" => "Chyba pri konfigurácii úložiska Google drive", "Saved" => "Uložené", +"<b>Note:</b> " => "<b>Poznámka:</b> ", +" and " => "a", +"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Poznámka:</b> cURL podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", +"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Poznámka:</b> FTP podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", +"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Poznámka:</b> \"%s\" nie je nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", "External Storage" => "Externé úložisko", "Folder name" => "Názov priečinka", "External storage" => "Externé úložisko", "Configuration" => "Nastavenia", "Options" => "Možnosti", +"Available for" => "K dispozícii pre", "Add storage" => "Pridať úložisko", +"No user or group" => "Žiadny používateľ alebo skupina", "All Users" => "Všetci používatelia", "Groups" => "Skupiny", "Users" => "Používatelia", "Delete" => "Zmazať", "Enable User External Storage" => "Povoliť externé úložisko", +"Allow users to mount the following external storage" => "Povoliť používateľom pripojiť tieto externé úložiská", "SSL root certificates" => "Koreňové SSL certifikáty", "Import Root Certificate" => "Importovať koreňový certifikát" ); diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index 6dfc3e53f0..cb0ac1a549 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup (Replica) Port", "Disable Main Server" => "Disable Main Server", "Only connect to the replica server." => "Only connect to the replica server.", +"Case insensitive LDAP server (Windows)" => "Case insensitive LDAP server (Windows)", "Turn off SSL certificate validation." => "Turn off SSL certificate validation.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/es_CR.php b/apps/user_ldap/l10n/es_CR.php new file mode 100644 index 0000000000..3a1e002311 --- /dev/null +++ b/apps/user_ldap/l10n/es_CR.php @@ -0,0 +1,6 @@ +<?php +$TRANSLATIONS = array( +"_%s group found_::_%s groups found_" => array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/or_IN.php b/apps/user_ldap/l10n/or_IN.php new file mode 100644 index 0000000000..3a1e002311 --- /dev/null +++ b/apps/user_ldap/l10n/or_IN.php @@ -0,0 +1,6 @@ +<?php +$TRANSLATIONS = array( +"_%s group found_::_%s groups found_" => array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index edda424433..3c6b51824f 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Uložiť", "Test Configuration" => "Test nastavenia", "Help" => "Pomoc", +"Groups meeting these criteria are available in %s:" => "Skupiny spĺňajúce tieto kritériá sú k dispozícii v %s:", "only those object classes:" => "len tieto triedy objektov:", "only from those groups:" => "len z týchto skupín:", "Edit raw filter instead" => "Miesto pre úpravu raw filtra", "Raw LDAP filter" => "Raw LDAP filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Tento filter LDAP určuje, ktoré skupiny budú mať prístup k %s inštancii.", "groups found" => "nájdené skupiny", +"Users login with this attribute:" => "Používateľov prihlásiť pomocou tohto atribútu:", "LDAP Username:" => "LDAP používateľské meno:", "LDAP Email Address:" => "LDAP emailová adresa:", "Other Attributes:" => "Iné atribúty:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pre anonymný prístup ponechajte údaje DN a Heslo prázdne.", "One Base DN per line" => "Jedno základné DN na riadok", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšírenom nastavení môžete zadať základné DN pre používateľov a skupiny", +"Limit %s access to users meeting these criteria:" => "Obmedziť %s prístup na používateľov spĺňajúcich tieto kritériá:", "The filter specifies which LDAP users shall have access to the %s instance." => "Tento filter LDAP určuje, ktorí používatelia majú prístup k %s inštancii.", "users found" => "nájdení používatelia", "Back" => "Späť", @@ -67,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Záložný server (kópia) port", "Disable Main Server" => "Zakázať hlavný server", "Only connect to the replica server." => "Pripojiť sa len k záložnému serveru.", +"Case insensitive LDAP server (Windows)" => "LDAP server je citlivý na veľkosť písmen (Windows)", "Turn off SSL certificate validation." => "Vypnúť overovanie SSL certifikátu.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Neodporúčané, použite iba pri testovaní! Pokiaľ spojenie funguje iba z daným nastavením, importujte SSL certifikát LDAP servera do vášho %s servera.", "Cache Time-To-Live" => "Životnosť objektov vo vyrovnávacej pamäti", @@ -84,6 +88,7 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Jedna skupinová základná DN na riadok", "Group Search Attributes" => "Atribúty vyhľadávania skupín", "Group-Member association" => "Priradenie člena skupiny", +"Nested Groups" => "Vnorené skupiny", "Special Attributes" => "Špeciálne atribúty", "Quota Field" => "Pole kvóty", "Quota Default" => "Predvolená kvóta", diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index a04cc40c7c..c19edebc26 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "verlede maand", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "maande gelede", "last year" => "verlede jaar", "years ago" => "jare gelede", "Choose" => "Kies", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 8c1d5ec307..b29a661ec6 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","","","",""), "last month" => "الشهر الماضي", "_%n month ago_::_%n months ago_" => array("","","","","",""), -"months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", "Choose" => "اختيار", diff --git a/core/l10n/ast.php b/core/l10n/ast.php index 667e452a0d..fd4a539c0b 100644 --- a/core/l10n/ast.php +++ b/core/l10n/ast.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("fai %n día","fai %n díes"), "last month" => "mes caberu", "_%n month ago_::_%n months ago_" => array("fai %n mes","fai %n meses"), -"months ago" => "fai meses", "last year" => "añu caberu", "years ago" => "fai años", "Choose" => "Esbillar", diff --git a/core/l10n/be.php b/core/l10n/be.php index 56f08cccc3..383d2494d2 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "У мінулым месяцы", "_%n month ago_::_%n months ago_" => array("","","",""), -"months ago" => "Месяцаў таму", "last year" => "У мінулым годзе", "years ago" => "Гадоў таму", "Choose" => "Выбар", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 397440bea2..861d7370ed 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "последният месец", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "Преди месеци", "last year" => "последната година", "years ago" => "последните години", "Choose" => "Избери", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 7c74a9d8af..e9f46d686c 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "গত মাস", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", "Choose" => "বেছে নিন", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 65c28fa0a6..d4adb682f8 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("fa %n dies","fa %n dies"), "last month" => "el mes passat", "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), -"months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", "Choose" => "Escull", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 45c92406bf..46b8de6bac 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("před %n dnem","před %n dny","před %n dny"), "last month" => "minulý měsíc", "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), -"months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", "Choose" => "Vybrat", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index f73f60d069..b79c1d5df5 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "mis diwethaf", "_%n month ago_::_%n months ago_" => array("","","",""), -"months ago" => "misoedd yn ôl", "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", "Choose" => "Dewisiwch", diff --git a/core/l10n/da.php b/core/l10n/da.php index c7bda6fd36..9991e3e490 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag siden","%n dage siden"), "last month" => "sidste måned", "_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), -"months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", "Choose" => "Vælg", diff --git a/core/l10n/de.php b/core/l10n/de.php index fabf35440c..7a0aecf4d5 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index eb2cfd233d..1a2c56635c 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index a65714f26f..b8bce778f8 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/el.php b/core/l10n/el.php index e6a53c54d3..c9506fda05 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ημέρα πριν","%n ημέρες πριν"), "last month" => "τελευταίο μήνα", "_%n month ago_::_%n months ago_" => array("%n μήνας πριν","%n μήνες πριν"), -"months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", "Choose" => "Επιλέξτε", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 215bae92d1..016bf23e8e 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n day ago","%n days ago"), "last month" => "last month", "_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), -"months ago" => "months ago", "last year" => "last year", "years ago" => "years ago", "Choose" => "Choose", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 05d28efb66..19d330e5c2 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("antaŭ %n tago","antaŭ %n tagoj"), "last month" => "lastamonate", "_%n month ago_::_%n months ago_" => array("antaŭ %n monato","antaŭ %n monatoj"), -"months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", "Choose" => "Elekti", diff --git a/core/l10n/es.php b/core/l10n/es.php index cb2d09d60f..53d2a9f4c2 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses antes", "last year" => "el año pasado", "years ago" => "años antes", "Choose" => "Seleccionar", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index c9d270edef..59e0afbdbe 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", "Choose" => "Elegir", diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php index b89e6575c5..cab130cbd3 100644 --- a/core/l10n/es_CL.php +++ b/core/l10n/es_CL.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "mes anterior", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "meses antes", "last year" => "último año", "years ago" => "años anteriores", "Choose" => "Choose", diff --git a/core/l10n/es_CR.php b/core/l10n/es_CR.php new file mode 100644 index 0000000000..ffcdde48d4 --- /dev/null +++ b/core/l10n/es_CR.php @@ -0,0 +1,9 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index 6a90e3d778..dca69ebaa3 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses antes", "last year" => "el año pasado", "years ago" => "años antes", "Choose" => "Seleccionar", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 422caac9c1..f0e05e571e 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n päev tagasi","%n päeva tagasi"), "last month" => "viimasel kuul", "_%n month ago_::_%n months ago_" => array("%n kuu tagasi","%n kuud tagasi"), -"months ago" => "kuu tagasi", "last year" => "viimasel aastal", "years ago" => "aastat tagasi", "Choose" => "Vali", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 8fd554485d..3b59fcdddb 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("orain dela egun %n","orain dela %n egun"), "last month" => "joan den hilabetean", "_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), -"months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", "Choose" => "Aukeratu", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index a349d3b770..ee634f466c 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "ماه قبل", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "ماههای قبل", "last year" => "سال قبل", "years ago" => "سالهای قبل", "Choose" => "انتخاب کردن", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 7797d17c87..9188469abc 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n päivä sitten","%n päivää sitten"), "last month" => "viime kuussa", "_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), -"months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", "Choose" => "Valitse", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 623f129c86..49be57abf3 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("il y a %n jour","il y a %n jours"), "last month" => "le mois dernier", "_%n month ago_::_%n months ago_" => array("Il y a %n mois","Il y a %n mois"), -"months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", "Choose" => "Choisir", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index fac17a5c23..9509446ec7 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("hai %n día","vai %n días"), "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), -"months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", "Choose" => "Escoller", diff --git a/core/l10n/he.php b/core/l10n/he.php index 8fb7373a14..d629ac6621 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("לפני %n יום","לפני %n ימים"), "last month" => "חודש שעבר", "_%n month ago_::_%n months ago_" => array("לפני %n חודש","לפני %n חודשים"), -"months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", "Choose" => "בחירה", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 46cc802df9..60b82a22ad 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","",""), "last month" => "prošli mjesec", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "mjeseci", "last year" => "prošlu godinu", "years ago" => "godina", "Choose" => "Izaberi", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 096b28e2d9..529eed687c 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n nappal ezelőtt","%n nappal ezelőtt"), "last month" => "múlt hónapban", "_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), -"months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", "Choose" => "Válasszon", diff --git a/core/l10n/id.php b/core/l10n/id.php index 5038d0d6c8..8d18cc60a9 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n hari yang lalu"), "last month" => "bulan kemarin", "_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), -"months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "Choose" => "Pilih", diff --git a/core/l10n/is.php b/core/l10n/is.php index f0bb8b94ff..254c4b3868 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "síðasta mánuði", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "einhverjum árum", "Choose" => "Veldu", diff --git a/core/l10n/it.php b/core/l10n/it.php index 98d0d5e3b0..dfcc0a480a 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n giorno fa","%n giorni fa"), "last month" => "mese scorso", "_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), -"months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", "Choose" => "Scegli", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index 3a99f0e598..ea8b44ff60 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n日前"), "last month" => "1ヶ月前", "_%n month ago_::_%n months ago_" => array("%nヶ月前"), -"months ago" => "数ヶ月前", "last year" => "1年前", "years ago" => "数年前", "Choose" => "選択", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index a76a886654..3389bafa7a 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "გასულ თვეში", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", "Choose" => "არჩევა", diff --git a/core/l10n/km.php b/core/l10n/km.php index f6de962a9c..0eac818c57 100644 --- a/core/l10n/km.php +++ b/core/l10n/km.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ថ្ងៃមុន"), "last month" => "ខែមុន", "_%n month ago_::_%n months ago_" => array("%n ខែមុន"), -"months ago" => "ខែមុន", "last year" => "ឆ្នាំមុន", "years ago" => "ឆ្នាំមុន", "Choose" => "ជ្រើស", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 6020777f87..d8c32e070d 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n일 전 "), "last month" => "지난 달", "_%n month ago_::_%n months ago_" => array("%n달 전 "), -"months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", "Choose" => "선택", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index b60f6c7c5f..30337c5fc8 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "leschte Mount", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "Méint hir", "last year" => "Lescht Joer", "years ago" => "Joren hir", "Choose" => "Auswielen", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 776cde74fe..e3b612df3f 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("prieš %n dieną","prieš %n dienas","prieš %n dienų"), "last month" => "praeitą mėnesį", "_%n month ago_::_%n months ago_" => array("prieš %n mėnesį","prieš %n mėnesius","prieš %n mėnesių"), -"months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", "Choose" => "Pasirinkite", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 683ff2c129..37cde915c5 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Šodien, %n dienas","Pirms %n dienas","Pirms %n dienām"), "last month" => "pagājušajā mēnesī", "_%n month ago_::_%n months ago_" => array("Šomēnes, %n mēneši","Pirms %n mēneša","Pirms %n mēnešiem"), -"months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", "Choose" => "Izvēlieties", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index c56ae32bf2..64c6671abf 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "минатиот месец", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", "Choose" => "Избери", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index c47599f5a1..2a9873f481 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag siden","%n dager siden"), "last month" => "forrige måned", "_%n month ago_::_%n months ago_" => array("%n dag siden","%n dager siden"), -"months ago" => "måneder siden", "last year" => "i fjor", "years ago" => "år siden", "Choose" => "Velg", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index b09509e629..43748352a7 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","%n dagen geleden"), "last month" => "vorige maand", "_%n month ago_::_%n months ago_" => array("","%n maanden geleden"), -"months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", "Choose" => "Kies", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index e6a80262a2..8d7e3c3788 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag sidan","%n dagar sidan"), "last month" => "førre månad", "_%n month ago_::_%n months ago_" => array("%n månad sidan","%n månadar sidan"), -"months ago" => "månadar sidan", "last year" => "i fjor", "years ago" => "år sidan", "Choose" => "Vel", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 102514a462..b13275822b 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "mes passat", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "meses a", "last year" => "an passat", "years ago" => "ans a", "Choose" => "Causís", diff --git a/core/l10n/or_IN.php b/core/l10n/or_IN.php new file mode 100644 index 0000000000..ffcdde48d4 --- /dev/null +++ b/core/l10n/or_IN.php @@ -0,0 +1,9 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/pa.php b/core/l10n/pa.php index 395928dc35..021452d0b3 100644 --- a/core/l10n/pa.php +++ b/core/l10n/pa.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "ਪਿਛਲੇ ਮਹੀਨੇ", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "ਮਹੀਨੇ ਪਹਿਲਾਂ", "last year" => "ਪਿਛਲੇ ਸਾਲ", "years ago" => "ਸਾਲਾਂ ਪਹਿਲਾਂ", "Choose" => "ਚੁਣੋ", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index fe0cf14583..0e9860b4bf 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dzień temu","%n dni temu","%n dni temu"), "last month" => "w zeszłym miesiącu", "_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), -"months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", "Choose" => "Wybierz", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 3545426b67..a7b671b440 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("ha %n dia","ha %n dias"), "last month" => "último mês", "_%n month ago_::_%n months ago_" => array("ha %n mês","ha %n meses"), -"months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", "Choose" => "Escolha", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index bb1b6011a6..9015dfd22b 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dia atrás","%n dias atrás"), "last month" => "ultímo mês", "_%n month ago_::_%n months ago_" => array("%n mês atrás","%n meses atrás"), -"months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", "Choose" => "Escolha", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 306c181bfd..634ef3b764 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("acum %n zi","acum %n zile","acum %n zile"), "last month" => "ultima lună", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", "Choose" => "Alege", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index aa784088f7..a09178a6cd 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n день назад","%n дня назад","%n дней назад"), "last month" => "в прошлом месяце", "_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), -"months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", "Choose" => "Выбрать", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index bcfb18520a..bb125cc6af 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "පෙර මාසයේ", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", "Choose" => "තෝරන්න", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 1b717bc412..80d816a461 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("pred %n dňom","pred %n dňami","pred %n dňami"), "last month" => "minulý mesiac", "_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), -"months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", "Choose" => "Vybrať", @@ -51,6 +50,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} konflikt súboru","{count} konflikty súboru","{count} konfliktov súboru"), "One file conflict" => "Jeden konflikt súboru", "New Files" => "Nové súbory", +"Already existing files" => "Už existujúce súbory", "Which files do you want to keep?" => "Ktoré súbory chcete ponechať?", "If you select both versions, the copied file will have a number added to its name." => "Ak zvolíte obe verzie, názov nakopírovaného súboru bude doplnený o číslo.", "Cancel" => "Zrušiť", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 7da6a81086..c87a8d8d8f 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("pred %n dnevom","pred %n dnevoma","pred %n dnevi","pred %n dnevi"), "last month" => "zadnji mesec", "_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), -"months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", "Choose" => "Izbor", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index bfb7b0903f..b3221dc75f 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ditë më parë","%n ditë më parë"), "last month" => "muajin e shkuar", "_%n month ago_::_%n months ago_" => array("%n muaj më parë","%n muaj më parë"), -"months ago" => "muaj më parë", "last year" => "vitin e shkuar", "years ago" => "vite më parë", "Choose" => "Zgjidh", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 55eee982a6..388ebb0df9 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","",""), "last month" => "прошлог месеца", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", "Choose" => "Одабери", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index e7eb2b499a..e7783b3c02 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Prije %n dan.","Prije %n dana.","Prije %n dana."), "last month" => "prošlog meseca", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "pre nekoliko meseci", "last year" => "prošle godine", "years ago" => "pre nekoliko godina", "Choose" => "Izaberi", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index d46c204d7c..d198b0d77c 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag sedan","%n dagar sedan"), "last month" => "förra månaden", "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), -"months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", "Choose" => "Välj", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 95468a9d7a..c0b4dce7cf 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "கடந்த மாதம்", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", "Choose" => "தெரிவுசெய்க ", diff --git a/core/l10n/te.php b/core/l10n/te.php index 9c22a61aa7..7b76349b85 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n రోజు క్రితం","%n రోజుల క్రితం"), "last month" => "పోయిన నెల", "_%n month ago_::_%n months ago_" => array("%n నెల క్రితం","%n నెలల క్రితం"), -"months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", "Yes" => "అవును", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 9ee3c60f94..61a67f7802 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "เดือนที่แล้ว", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", "Choose" => "เลือก", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 2b0d952a34..d5880d8a09 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n gün önce","%n gün önce"), "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("%n ay önce","%n ay önce"), -"months ago" => "aylar önce", "last year" => "geçen yıl", "years ago" => "yıllar önce", "Choose" => "Seç", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index f6bcfdcdc8..2bbfb6cd98 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n день тому","%n дні тому","%n днів тому"), "last month" => "минулого місяця", "_%n month ago_::_%n months ago_" => array("%n місяць тому","%n місяці тому","%n місяців тому"), -"months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", "Choose" => "Обрати", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 319f68b635..fe24cb385e 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ngày trước"), "last month" => "tháng trước", "_%n month ago_::_%n months ago_" => array("%n tháng trước"), -"months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", "Choose" => "Chọn", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 68f50baf98..b068d42567 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n 天前"), "last month" => "上月", "_%n month ago_::_%n months ago_" => array("%n 月前"), -"months ago" => "月前", "last year" => "去年", "years ago" => "年前", "Choose" => "选择(&C)...", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index 51d78a0979..294fa7d6fe 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "前一月", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "個月之前", "Yes" => "Yes", "No" => "No", "Ok" => "OK", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 0799344697..600c8df9bd 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n 天前"), "last month" => "上個月", "_%n month ago_::_%n months ago_" => array("%n 個月前"), -"months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", "Choose" => "選擇", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index ca25a26988..508df40e1d 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 2ec8af4d0e..3feea8b76a 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 155b27a4f7..06f42ada91 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 3c1f515e05..2641da3bfc 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po index 12f59cbc7b..e0960d692e 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index 4a8e95a3be..64fe376c03 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 6c03061dbe..fe2264f61e 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-17 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 19:39+0000\n" -"Last-Translator: kalliet <kst@fam-tank.net>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,63 +135,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Instellings" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekondes gelede" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute gelede" msgstr[1] "%n minute gelede" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "vandag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gister" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "verlede maand" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "maande gelede" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "verlede jaar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jare gelede" @@ -295,12 +291,12 @@ msgstr "Gedeel" msgid "Share" msgstr "Deel" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:732 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:788 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan wysig" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:719 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:732 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:750 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:775 +#: js/share.js:777 msgid "Sending ..." msgstr "Stuur ..." -#: js/share.js:786 +#: js/share.js:788 msgid "Email sent" msgstr "E-pos gestuur" -#: js/share.js:810 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 24833c8a10..30b5a5ae9a 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index de9915079a..b8e7b43bf5 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ak/core.po b/l10n/ak/core.po index 1fd891dc6e..2314857d23 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ak/files.po b/l10n/ak/files.po index 73d266f53a..d566e8e3cb 100644 --- a/l10n/ak/files.po +++ b/l10n/ak/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index 27711c9151..92e383c701 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/am_ET/core.po b/l10n/am_ET/core.po index e66052cc04..3d756941bf 100644 --- a/l10n/am_ET/core.po +++ b/l10n/am_ET/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/am_ET/files.po b/l10n/am_ET/files.po index 22104ecccf..09ff9217d1 100644 --- a/l10n/am_ET/files.po +++ b/l10n/am_ET/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index 6aa770b32e..6c609cd16f 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 13b1456ee6..2f3200cf40 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,19 +136,19 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "إعدادات" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "جاري الحفظ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -158,7 +158,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -168,15 +168,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "اليوم" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -186,11 +186,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -200,15 +200,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "شهر مضى" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "سنة مضت" @@ -316,12 +312,12 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خطأ" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -385,71 +381,71 @@ msgstr "مشاركة عبر البريد الإلكتروني:" msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "مجموعة" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "إنشاء" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "تحديث" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "حذف" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "مشاركة" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "تحذير" @@ -477,7 +473,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index bba1a48aeb..cf267ac9f2 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -320,8 +320,9 @@ msgid "%s could not be renamed" msgstr "%s لا يمكن إعادة تسميته. " #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "رفع" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 51b0b345d5..d8954db88c 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "السماح بتنبيهات البريد الالكتروني." #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة " +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index 2a19c06bdc..5fb6629ee3 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: Tornes Llume <l.lumex03.tornes@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,63 +135,59 @@ msgstr "Payares" msgid "December" msgstr "Avientu" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Axustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "fai segundos" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fai %n minutu" msgstr[1] "fai %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fai %n hora" msgstr[1] "fai %n hores" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "güei" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayeri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fai %n día" msgstr[1] "fai %n díes" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes caberu" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fai %n mes" msgstr[1] "fai %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "fai meses" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "añu caberu" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "fai años" @@ -456,7 +452,7 @@ msgstr "Editar etiquetes" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 89e4cae67d..5a1b65708b 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Xubir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 800d6e3ec2..ee7ed5a49c 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/az/core.po b/l10n/az/core.po index 16e53892b8..f61bb1c4aa 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/az/files.po b/l10n/az/files.po index 8d82454375..0713c91424 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/az/settings.po b/l10n/az/settings.po index fbc31d7116..e9de38850f 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/be/core.po b/l10n/be/core.po index b5a06d9d8f..7b3d997c5f 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,19 +135,19 @@ msgstr "Лістапад" msgid "December" msgstr "Снежань" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Налады" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Секунд таму" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Сёння" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Ўчора" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "У мінулым месяцы" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,15 +191,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Месяцаў таму" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "У мінулым годзе" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Гадоў таму" @@ -305,12 +301,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Памылка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -374,71 +370,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -466,7 +462,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index 4fd29da162..6bcbb0a2aa 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,7 +312,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 8351820bb2..1f6747d53d 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 1927b8fb96..9dd5f13ded 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Настройки" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Записване..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "днес" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "последният месец" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Преди месеци" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "последната година" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "последните години" @@ -295,12 +291,12 @@ msgstr "Споделено" msgid "Share" msgstr "Споделяне" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка при споделяне" @@ -364,71 +360,71 @@ msgstr "сподели по поща:" msgid "No people found" msgstr "Не са открити хора" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Допълнително споделяне не е разрешено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Споделено в {item} с {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Премахни споделяне" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да променя" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контрол на достъпа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "създаване" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "Обновяване" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "Изтриване" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "Споделяне" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Защитено с парола" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка при премахване на дата за изтичане" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грепка при поставяне на дата за изтичане" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Изпращам ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Пощата е изпратена" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Внимание" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 117a237fae..eac7d479c0 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Качване" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index bfc3c97823..45e8a22497 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 190c189d63..fc4de2ea84 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "আজ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "গত মাস" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "মাস পূর্বে" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "গত বছর" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "বছর পূর্বে" @@ -294,12 +290,12 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "সমস্যা" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -363,71 +359,71 @@ msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "সতর্কবাণী" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 1ddd8d6c74..11c329107e 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "আপলোড" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index ab60e1d0ce..8dfd63b8a1 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 0b74295437..3100ac1ded 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,140 +134,136 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Spašavam..." -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -368,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 194ec79a38..6f64ff337e 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -309,7 +309,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 8ec5e98732..b58fd383af 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ca/core.po b/l10n/ca/core.po index b935d5a08e..1e564d686f 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuració" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Desant..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "avui" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ahir" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes passat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesos enrere" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "l'any passat" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anys enrere" @@ -297,12 +293,12 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error en compartir" @@ -366,71 +362,71 @@ msgstr "Comparteix per correu electrònic" msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifica per correu electrònic" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pot editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control d'accés" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crea" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualitza" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimina" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "comparteix" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Avís" @@ -458,7 +454,7 @@ msgstr "Edita etiquetes" msgid "Error loading dialog template: {error}" msgstr "Error en carregar la plantilla de diàleg: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No heu seleccionat les etiquetes a eliminar." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 59335d109d..72127548ff 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Puja" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index fad333300c..8a8a6b05b8 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Permet notificacions per correu electrónic" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index d5e17f6136..8effd3dc1f 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" -"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -143,67 +143,63 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavení" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Ukládám..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dnes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včera" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:1107 -msgid "months ago" -msgstr "před měsíci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "minulý rok" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "před lety" @@ -469,7 +465,7 @@ msgstr "Editovat štítky" msgid "Error loading dialog template: {error}" msgstr "Chyba při načítání šablony dialogu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Žádné štítky nebyly vybrány ke smazání." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8bc567a4dc..70caf9e725 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -317,8 +317,9 @@ msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Odeslat" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 5618acb9b4..711ef3ddcc 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -6,6 +6,7 @@ # Twiguard, 2013 # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013 +# svetlemodry <jaroslav@lichtblau.cz>, 2014 # cvanca <mrs.jenkins.oh.yeah@gmail.com>, 2013 # m23 <black23@gmail.com>, 2014 # pstast <petr@stastny.eu>, 2013-2014 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: pstast <petr@stastny.eu>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -99,11 +100,11 @@ msgstr "" msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -527,8 +528,8 @@ msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index d517e51708..6df89c597e 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,19 +135,19 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Yn cadw..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "heddiw" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ddoe" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,15 +191,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "misoedd yn ôl" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "y llynedd" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -305,12 +301,12 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Gwall" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -374,71 +370,71 @@ msgstr "Rhannu drwy e-bost:" msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grŵp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creu" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "diweddaru" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "dileu" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "rhannu" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Anfonwyd yr e-bost" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Rhybudd" @@ -466,7 +462,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index ef9494360a..6d40efa1f1 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,8 +312,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Llwytho i fyny" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 8423265aa9..21bd860c84 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/da/core.po b/l10n/da/core.po index fe32f8309e..62a96c69be 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,63 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gemmer..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "sidste måned" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:1107 -msgid "months ago" -msgstr "måneder siden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "sidste år" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år siden" @@ -301,12 +297,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fejl" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fejl under deling" @@ -370,71 +366,71 @@ msgstr "Del via email:" msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Giv besked med mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan redigere" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "opret" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "opdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slet" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail afsendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Advarsel" @@ -462,7 +458,7 @@ msgstr "Rediger tags" msgid "Error loading dialog template: {error}" msgstr "Fejl ved indlæsning dialog skabelon: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ingen tags markeret til sletning." diff --git a/l10n/da/files.po b/l10n/da/files.po index 7308b09236..85e9030ae9 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index c1d8a6bf47..4d63d7d427 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Tillad mail underretninger" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillad brugere at sende mail underretninger for delte filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de/core.po b/l10n/de/core.po index ab11d78159..91537915a8 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -145,63 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -305,12 +301,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -374,71 +370,71 @@ msgstr "Über eine E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-Mail wurde verschickt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -466,7 +462,7 @@ msgstr "Schlagwörter bearbeiten" msgid "Error loading dialog template: {error}" msgstr "Fehler beim Laden der Dialogvorlage: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." diff --git a/l10n/de/files.po b/l10n/de/files.po index 9d5ef4125e..973943e7a2 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -314,8 +314,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9dcd7cf9ea..573b92899f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 9d060609c6..b09cbf82be 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,135 +135,131 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "Freigeben" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "Teilung zurücknehmen" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 4aad8f931d..bb860e55b3 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 83997bae59..d91974e8a4 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index a8afc9f0ca..584e5b7af3 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -144,63 +144,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -304,12 +300,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -373,71 +369,71 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -465,7 +461,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 3fb889a1c4..36673d798d 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index b3db66ec50..4165f28b4b 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -529,7 +529,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 665ae3cc10..ef3240473e 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -145,63 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -305,12 +301,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -374,71 +370,71 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -466,7 +462,7 @@ msgstr "Schlagwörter bearbeiten" msgid "Error loading dialog template: {error}" msgstr "Fehler beim Laden der Dialogvorlage: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ad69e037e6..843016e5ae 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -317,8 +317,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e70b8d6afd..e769fdb0a0 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/el/core.po b/l10n/el/core.po index 9b44871cb2..8b2799cf50 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 22:00+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -145,63 +145,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ώρα πριν" msgstr[1] "%n ώρες πριν" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "σήμερα" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "χτες" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ημέρα πριν" msgstr[1] "%n ημέρες πριν" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n μήνας πριν" msgstr[1] "%n μήνες πριν" -#: js/js.js:1107 -msgid "months ago" -msgstr "μήνες πριν" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "χρόνια πριν" @@ -466,7 +462,7 @@ msgstr "Επεξεργασία ετικετών" msgid "Error loading dialog template: {error}" msgstr "Σφάλμα φόρτωσης προτύπου διαλόγων: {σφάλμα}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Καμμία ετικέτα δεν επιλέχθηκε για διαγραφή." diff --git a/l10n/el/files.po b/l10n/el/files.po index b2cbbde59f..d35a622a95 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 21:50+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -313,8 +313,9 @@ msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Μεταφόρτωση" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 667c9d73d9..72799b9f58 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 22:10+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Επιτρέπει τους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index ccdc20247b..3138530f0d 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,135 +135,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index eff254ddd3..d0ab951ca9 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index a654ee294b..718ec23774 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index c1d3f0e57d..046deb4135 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Settings" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saving..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "today" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "yesterday" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "last month" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:1107 -msgid "months ago" -msgstr "months ago" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "last year" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "years ago" @@ -295,12 +291,12 @@ msgstr "Shared" msgid "Share" msgstr "Share" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -364,71 +360,71 @@ msgstr "Share via email:" msgid "No people found" msgstr "No people found" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "group" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Resharing is not allowed" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Shared in {item} with {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Unshare" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notify by email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "can edit" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "access control" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "create" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "update" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "delete" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "share" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Password protected" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email sent" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warning" @@ -456,7 +452,7 @@ msgstr "Edit tags" msgid "Error loading dialog template: {error}" msgstr "Error loading dialog template: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No tags selected for deletion." diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 7f557cc15a..8d455ef98f 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s could not be renamed" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index bb29a772bc..0cc06ec600 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 14:20+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 09:37+0000\n" "Last-Translator: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "Users" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." @@ -74,7 +74,7 @@ msgstr "ZIP download is turned off." msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Back to Files" @@ -148,15 +148,15 @@ msgstr "Can't create app folder. Please fix permissions. %s" msgid "Application is not enabled" msgstr "Application is not enabled" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentication error" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expired. Please reload page." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unknown user" @@ -290,68 +290,68 @@ msgstr "%s shared \"%s\" with you" msgid "Could not find category \"%s\"" msgstr "Could not find category \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "seconds ago" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "today" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "yesterday" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n day go" msgstr[1] "%n days ago" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "last month" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "last year" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "years ago" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "A valid password must be provided" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "The username is already being used" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index cc2da5a6ff..c09c1b3e9c 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -87,17 +87,17 @@ msgstr "Unable to add group" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Files decrypted successfully" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Couldn't decrypt your files, check your password and try again" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Allow mail notification" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index ff4d53a9b7..f3cc6ffede 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 09:40+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\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" @@ -337,7 +337,7 @@ msgstr "Only connect to the replica server." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Case insensitive LDAP server (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index b8d7904c2a..50da857e62 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Agordo" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Konservante..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "antaŭ %n minuto" msgstr[1] "antaŭ %n minutoj" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "antaŭ %n horo" msgstr[1] "antaŭ %n horoj" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hodiaŭ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "antaŭ %n tago" msgstr[1] "antaŭ %n tagoj" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "lastamonate" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "antaŭ %n monato" msgstr[1] "antaŭ %n monatoj" -#: js/js.js:1107 -msgid "months ago" -msgstr "monatoj antaŭe" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "lastajare" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jaroj antaŭe" @@ -296,12 +292,12 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Eraro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -365,71 +361,71 @@ msgstr "Kunhavigi per retpoŝto:" msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "avizi per retpoŝto" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "povas redakti" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "krei" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "forigi" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "kunhavigi" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Averto" @@ -457,7 +453,7 @@ msgstr "Redakti etikedojn" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Neniu etikedo elektitas por forigo." diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 76864720d2..73a096c283 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s ne povis alinomiĝi" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Alŝuti" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 4956bdbd6f..b5865f264b 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/es/core.po b/l10n/es/core.po index 7d5a15c84f..621c192338 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -148,63 +148,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años antes" @@ -308,12 +304,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -377,71 +373,71 @@ msgstr "Compartir por correo electrónico:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por correo electrónico" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "puede editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eliminar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Precaución" @@ -469,7 +465,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando plantilla de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No hay etiquetas seleccionadas para borrar." diff --git a/l10n/es/files.po b/l10n/es/files.po index e58112bd59..9ea5a0b179 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -316,8 +316,9 @@ msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 96c24139d3..e9254d48a3 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -534,8 +534,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 2fd6e33653..aa1b502cbe 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuración" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años atrás" @@ -296,12 +292,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -365,71 +361,71 @@ msgstr "Compartir a través de e-mail:" msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por correo" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "podés editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "borrar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "e-mail mandado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Atención" @@ -457,7 +453,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando la plantilla de dialogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No se han seleccionado etiquetas para eliminar." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index fdd48c933e..490d277f87 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 748f37b09e..ec1a2c9acc 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo para archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 34129f3ca7..0ea25ef3cb 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -135,63 +135,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuración" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes anterior" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último año" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años anteriores" @@ -295,12 +291,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Ocurrió un error mientras compartía" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index 72fa40ee9c..275606fec5 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index c490d88121..89776c457b 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/es_CR/core.po b/l10n/es_CR/core.po new file mode 100644 index 0000000000..bc873a1313 --- /dev/null +++ b/l10n/es_CR/core.po @@ -0,0 +1,805 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:87 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:119 ajax/share.php:161 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:10 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:13 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:16 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:489 +msgid "Settings" +msgstr "" + +#: js/js.js:589 +msgid "Saving..." +msgstr "" + +#: js/js.js:1246 +msgid "seconds ago" +msgstr "" + +#: js/js.js:1247 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1248 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1249 +msgid "today" +msgstr "" + +#: js/js.js:1250 +msgid "yesterday" +msgstr "" + +#: js/js.js:1251 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1252 +msgid "last month" +msgstr "" + +#: js/js.js:1253 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1254 +msgid "last year" +msgstr "" + +#: js/js.js:1255 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:125 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:151 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:187 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:204 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:224 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:352 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:366 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:372 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:373 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:375 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:384 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:394 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:466 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:790 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:385 +msgid "group" +msgstr "" + +#: js/share.js:357 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:401 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:423 +msgid "Unshare" +msgstr "" + +#: js/share.js:431 +msgid "notify by email" +msgstr "" + +#: js/share.js:434 +msgid "can edit" +msgstr "" + +#: js/share.js:436 +msgid "access control" +msgstr "" + +#: js/share.js:439 +msgid "create" +msgstr "" + +#: js/share.js:442 +msgid "update" +msgstr "" + +#: js/share.js:445 +msgid "delete" +msgstr "" + +#: js/share.js:448 +msgid "share" +msgstr "" + +#: js/share.js:721 +msgid "Password protected" +msgstr "" + +#: js/share.js:734 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:752 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:777 +msgid "Sending ..." +msgstr "" + +#: js/share.js:788 +msgid "Email sent" +msgstr "" + +#: js/share.js:812 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:264 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.<br>If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.<br>If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!<br>Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:140 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:144 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"%s\" target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " +"JavaScript</a> and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> " +"with you.<br><a href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/es_CR/files.po b/l10n/es_CR/files.po new file mode 100644 index 0000000000..0a682b7b72 --- /dev/null +++ b/l10n/es_CR/files.po @@ -0,0 +1,409 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:146 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:57 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:33 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:75 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:82 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:83 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:85 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:86 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:87 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:88 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:89 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:107 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:169 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:179 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:194 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:254 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:266 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:276 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:353 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:398 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:490 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:555 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:559 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:561 js/filelist.js:585 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:613 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:626 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:666 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:164 +msgid "Share" +msgstr "" + +#: js/fileactions.js:177 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:238 +msgid "Rename" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "" + +#: js/filelist.js:251 js/filelist.js:1129 +msgid "Pending" +msgstr "" + +#: js/filelist.js:612 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:775 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:808 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:1037 js/filelist.js:1076 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +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 "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:331 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:570 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:571 templates/index.php:79 +msgid "Size" +msgstr "" + +#: js/files.js:572 templates/index.php:81 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:93 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:22 +#, php-format +msgid "Upload (max. %s)" +msgstr "" + +#: templates/admin.php:4 +msgid "File handling" +msgstr "" + +#: templates/admin.php:6 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:14 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:16 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:19 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:21 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:25 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "New folder" +msgstr "" + +#: templates/index.php:13 +msgid "Folder" +msgstr "" + +#: templates/index.php:16 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:45 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:51 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:84 templates/index.php:85 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" diff --git a/l10n/es_CR/files_encryption.po b/l10n/es_CR/files_encryption.po new file mode 100644 index 0000000000..c2e3a2ba8c --- /dev/null +++ b/l10n/es_CR/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +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 "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"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." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:2 templates/settings-personal.php:2 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:5 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:9 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:12 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:19 templates/settings-personal.php:50 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:27 templates/settings-personal.php:58 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:32 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:38 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:45 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:51 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:8 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:13 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:21 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:27 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:32 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:41 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:43 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:59 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/es_CR/files_external.po b/l10n/es_CR/files_external.po new file mode 100644 index 0000000000..267cf48a03 --- /dev/null +++ b/l10n/es_CR/files_external.po @@ -0,0 +1,136 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:318 js/settings.js:325 +msgid "Saved" +msgstr "" + +#: lib/config.php:598 +msgid "<b>Note:</b> " +msgstr "" + +#: lib/config.php:608 +msgid " and " +msgstr "" + +#: lib/config.php:630 +#, php-format +msgid "" +"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:632 +#, php-format +msgid "" +"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:634 +#, php-format +msgid "" +"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:2 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:27 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:9 +msgid "External storage" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Available for" +msgstr "" + +#: templates/settings.php:32 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:92 +msgid "No user or group" +msgstr "" + +#: templates/settings.php:95 +msgid "All Users" +msgstr "" + +#: templates/settings.php:97 +msgid "Groups" +msgstr "" + +#: templates/settings.php:105 +msgid "Users" +msgstr "" + +#: templates/settings.php:118 templates/settings.php:119 +#: templates/settings.php:158 templates/settings.php:159 +msgid "Delete" +msgstr "" + +#: templates/settings.php:132 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:135 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:150 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:168 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/es_CR/files_sharing.po b/l10n/es_CR/files_sharing.po new file mode 100644 index 0000000000..904ff6bff9 --- /dev/null +++ b/l10n/es_CR/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:33 +msgid "Shared by {owner}" +msgstr "" + +#: 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:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/es_CR/files_trashbin.po b/l10n/es_CR/files_trashbin.po new file mode 100644 index 0000000000..4b692737a2 --- /dev/null +++ b/l10n/es_CR/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:3 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 +msgid "Error" +msgstr "" + +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:861 lib/trashbin.php:863 +msgid "restored" +msgstr "" + +#: templates/index.php:6 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:19 +msgid "Name" +msgstr "" + +#: templates/index.php:30 +msgid "Deleted" +msgstr "" + +#: templates/index.php:33 templates/index.php:34 +msgid "Delete" +msgstr "" diff --git a/l10n/es_CR/files_versions.po b/l10n/es_CR/files_versions.po new file mode 100644 index 0000000000..c057c86768 --- /dev/null +++ b/l10n/es_CR/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:39 +msgid "Versions" +msgstr "" + +#: js/versions.js:61 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:88 +msgid "More versions..." +msgstr "" + +#: js/versions.js:126 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:156 +msgid "Restore" +msgstr "" diff --git a/l10n/es_CR/lib.po b/l10n/es_CR/lib.po new file mode 100644 index 0000000000..e4276b217e --- /dev/null +++ b/l10n/es_CR/lib.po @@ -0,0 +1,356 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:880 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:232 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:233 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:234 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:259 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:260 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the <shipped>true</shipped> tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:62 private/json.php:87 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:74 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:134 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:135 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:137 +msgid "today" +msgstr "" + +#: private/template/functions.php:138 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:140 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:142 +msgid "last month" +msgstr "" + +#: private/template/functions.php:143 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:145 +msgid "last year" +msgstr "" + +#: private/template/functions.php:146 +msgid "years ago" +msgstr "" + +#: private/user/manager.php:232 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:237 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:241 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:246 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/es_CR/settings.po b/l10n/es_CR/settings.po new file mode 100644 index 0000000000..a49c9deae0 --- /dev/null +++ b/l10n/es_CR/settings.po @@ -0,0 +1,838 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:17 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:36 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:68 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:73 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:81 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:86 changepassword/controller.php:97 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:55 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:243 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:313 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:48 personal.php:49 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the <a href=\"%s\">installation guides</a>." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow users to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:171 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:174 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:38 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:43 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:49 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:51 +msgid "See application website" +msgstr "" + +#: templates/apps.php:53 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:39 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:40 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:45 +msgid "New password" +msgstr "" + +#: templates/personal.php:49 +msgid "Change password" +msgstr "" + +#: templates/personal.php:61 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:76 +msgid "Email" +msgstr "" + +#: templates/personal.php:78 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:81 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:89 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:94 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:96 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:97 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:98 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:100 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:104 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:105 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:111 templates/personal.php:112 +msgid "Language" +msgstr "" + +#: templates/personal.php:131 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " +"WebDAV</a>" +msgstr "" + +#: templates/personal.php:151 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:157 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:162 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/es_CR/user_ldap.po b/l10n/es_CR/user_ldap.po new file mode 100644 index 0000000000..851e23536f --- /dev/null +++ b/l10n/es_CR/user_ldap.po @@ -0,0 +1,534 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:983 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitive LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:45 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:45 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:46 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:47 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:47 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:54 +msgid "" +"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." +msgstr "" + +#: templates/settings.php:55 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:56 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:57 +msgid "" +"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." +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:59 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:60 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +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. " +"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." +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/es_CR/user_webdavauth.po b/l10n/es_CR/user_webdavauth.po new file mode 100644 index 0000000000..479fa6b546 --- /dev/null +++ b/l10n/es_CR/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:2 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:3 +msgid "Address: " +msgstr "" + +#: templates/settings.php:6 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 0bd714df55..50fd808eba 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años antes" @@ -294,12 +290,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -363,71 +359,71 @@ msgstr "Compartir por correo electrónico:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar al usuario por correo electrónico" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "puede editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eliminar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Precaución" @@ -455,7 +451,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando plantilla de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No hay etiquetas seleccionadas para borrar." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index aeb5e6cc2e..76bbff5f42 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 35e71a9ae3..d94130c865 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,8 +520,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 4a36dbbeea..568a8dd44a 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Seaded" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "täna" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "eile" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:1107 -msgid "months ago" -msgstr "kuu tagasi" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "aastat tagasi" @@ -296,12 +292,12 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Viga" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -365,71 +361,71 @@ msgstr "Jaga e-postiga:" msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "teavita e-postiga" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "saab muuta" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "loo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uuenda" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "kustuta" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "jaga" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-kiri on saadetud" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Hoiatus" @@ -457,7 +453,7 @@ msgstr "Muuda silte" msgid "Error loading dialog template: {error}" msgstr "Viga dialoogi malli laadimisel: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Kustutamiseks pole ühtegi silti valitud." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index dd21c64115..6dd46cb0f2 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Lae üles" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 3a21e4d2e5..8aa434c982 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Luba teavitused e-postiga" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index f13fab969c..118be3c55c 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gordetzen..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "gaur" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "atzo" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:1107 -msgid "months ago" -msgstr "hilabete" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "joan den urtean" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "urte" @@ -296,12 +292,12 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Errorea" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -365,71 +361,71 @@ msgstr "Elkarbanatu eposta bidez:" msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "taldea" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "jakinarazi eposta bidez" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "sortu" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "eguneratu" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ezabatu" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "elkarbanatu" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Eposta bidalia" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Abisua" @@ -457,7 +453,7 @@ msgstr "Editatu etiketak" msgid "Error loading dialog template: {error}" msgstr "Errorea elkarrizketa txantiloia kargatzean: {errorea}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ez dira ezabatzeko etiketak hautatu." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 139d567f5f..281fc74b73 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Igo" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index a66de5fe05..68512ff41a 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Baimendu posta bidezko jakinarazpenak" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 767e8da8b5..dff837b3f7 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index ee74198632..2d1e2e9f99 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index e0571110ac..95737685da 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1eb4ee7349..3011d8ffd5 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,59 +135,55 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "ثانیهها پیش" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "امروز" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "دیروز" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ماه قبل" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "ماههای قبل" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "سال قبل" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "سالهای قبل" @@ -290,12 +286,12 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراکگذاری" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خطا" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -359,71 +355,71 @@ msgstr "از طریق ایمیل به اشتراک بگذارید :" msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "گروه" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "ایجاد" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "به روز" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "پاک کردن" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ایمیل ارسال شد" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "اخطار" @@ -451,7 +447,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 969a816852..938b248e10 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -305,8 +305,9 @@ msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "بارگزاری" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 6a301250d5..52107ad513 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "مجاز نمودن اطلاع رسانی توسط ایمیل" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "مجاز نمودن ارسال ایمیل توسط کاربر برای فایلهای به اشتراک گذاشته شده" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 766a2aee42..8536577419 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Asetukset" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Tallennetaan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "tänään" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "eilen" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "viime kuussa" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:1107 -msgid "months ago" -msgstr "kuukautta sitten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "viime vuonna" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "vuotta sitten" @@ -297,12 +293,12 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Virhe" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -366,71 +362,71 @@ msgstr "Jaa sähköpostilla:" msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ryhmä" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{item} on jaettu {user} kanssa" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "ilmoita sähköpostitse" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "voi muokata" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "luo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "päivitä" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "poista" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "jaa" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Sähköposti lähetetty" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varoitus" @@ -458,7 +454,7 @@ msgstr "Muokkaa tunnisteita" msgid "Error loading dialog template: {error}" msgstr "Virhe ladatessa keskustelupohja: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Tunnisteita ei valittu poistettavaksi." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index aebd22bd7f..6cf56c8282 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "kohteen %s nimeäminen uudelleen epäonnistui" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Lähetä" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index c1d806b8df..a29b87e036 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 177563180d..bf908d51b7 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -142,63 +142,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Paramètres" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Enregistrement..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "aujourd'hui" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hier" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "le mois dernier" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:1107 -msgid "months ago" -msgstr "il y a plusieurs mois" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "l'année dernière" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "il y a plusieurs années" @@ -302,12 +298,12 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erreur" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -371,71 +367,71 @@ msgstr "Partager via e-mail :" msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "groupe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Notifier par email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "créer" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "mettre à jour" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "supprimer" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partager" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email envoyé" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Attention" @@ -463,7 +459,7 @@ msgstr "Modifier les balises" msgid "Error loading dialog template: {error}" msgstr "Erreur de chargement du modèle de dialogue : {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Aucune balise sélectionnée pour la suppression." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index f82038376f..84a033faa6 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s ne peut être renommé" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Envoyer" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index f2b3a03c20..ab5c1b50a5 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: RyDroid <rydroid_trans@yahoo.fr>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -531,8 +531,8 @@ msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index cc4a62b68d..53de5d6a0d 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index 72448b63f6..892e66ce56 100644 --- a/l10n/fr_CA/files.po +++ b/l10n/fr_CA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index dab733306e..f117288070 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 75ebd80fdf..4485652ceb 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 11:20+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Axustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoxe" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "onte" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "vai %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "último mes" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último ano" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -457,7 +453,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Produciuse un erro ao cargar o modelo do dialogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Non se seleccionaron etiquetas para borrado." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 6d21e74614..a7930014cc 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Enviar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 2b8f1ed4fb..03e60c26d9 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Permitir o envío de notificacións por correo" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/he/core.po b/l10n/he/core.po index 0d82a12dc9..e1f1cdc21e 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "הגדרות" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "שמירה…" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "שניות" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "היום" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "אתמול" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:1107 -msgid "months ago" -msgstr "חודשים" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "שנים" @@ -296,12 +292,12 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "שגיאה" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -365,71 +361,71 @@ msgstr "שיתוף באמצעות דוא״ל:" msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "קבוצה" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "יצירה" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "עדכון" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "מחיקה" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "שיתוף" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "אזהרה" @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/he/files.po b/l10n/he/files.po index ad260a38e1..bb48eacb83 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "העלאה" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 3445981b76..a28368def9 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 571197dfa4..2ec39b5235 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -296,12 +292,12 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "त्रुटि" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -365,71 +361,71 @@ msgstr "" msgid "No people found" msgstr "कोई व्यक्ति नहीं मिले " -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "चेतावनी " @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e67b344c20..96c95a364f 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "अपलोड " +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index e529f84564..359c0fbdfd 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 739b25a88d..b8629d3634 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,67 +134,63 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Postavke" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Spremanje..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "danas" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "jučer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "mjeseci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "godina" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -368,71 +364,71 @@ msgstr "Dijeli preko email-a:" msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "kreiraj" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ažuriraj" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "izbriši" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "djeli" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 0074b6dec5..530f648abb 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Učitaj" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 16655c2363..7701040cd5 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index b37aaff518..1169062c0e 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Beállítások" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Mentés..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n perccel ezelőtt" msgstr[1] "%n perccel ezelőtt" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ma" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "tegnap" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:1107 -msgid "months ago" -msgstr "több hónapja" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "tavaly" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "több éve" @@ -297,12 +293,12 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Hiba" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -366,71 +362,71 @@ msgstr "Megosztás emaillel:" msgid "No people found" msgstr "Nincs találat" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "csoport" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "email értesítés" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "módosíthat" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "jogosultság" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "létrehoz" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "szerkeszt" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "töröl" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "megoszt" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Az emailt elküldtük" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Figyelmeztetés" @@ -458,7 +454,7 @@ msgstr "Címkék szerkesztése" msgid "Error loading dialog template: {error}" msgstr "Hiba a párbeszédpanel-sablon betöltésekor: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nincs törlésre kijelölt címke." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 1dc8cba47a..b3717afaec 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Feltöltés" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index ca7929dce2..8fadff9a29 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "E-mail értesítések engedélyezése" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról." +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 92b8b8c385..dc7320cd4d 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 83025c434d..4a376c6189 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index b2d395b9e7..ff928e69b3 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ia/core.po b/l10n/ia/core.po index a269263e65..4df7c41aab 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configurationes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Leva compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pote modificar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 3110f2fd87..8d845151f7 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Incargar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 9658732434..4d49d8b7bd 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/id/core.po b/l10n/id/core.po index 2ba78033e3..b0a81a4b5b 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Pengaturan" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Menyimpan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hari ini" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "kemarin" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: js/js.js:1107 -msgid "months ago" -msgstr "beberapa bulan lalu" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "beberapa tahun lalu" @@ -289,12 +285,12 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Galat" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -358,71 +354,71 @@ msgstr "Bagian lewat email:" msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifikasi via email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "dapat sunting" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrol akses" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "buat" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "perbarui" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "hapus" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "bagikan" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Sandi dilindungi" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Galat ketika mengatur tanggal kedaluwarsa" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email terkirim" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Peringatan" @@ -450,7 +446,7 @@ msgstr "Sunting tag" msgid "Error loading dialog template: {error}" msgstr "Galat memuat templat dialog: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Tidak ada tag yang terpilih untuk dihapus." diff --git a/l10n/id/files.po b/l10n/id/files.po index 7b7f991bc7..2344f6033d 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -304,8 +304,9 @@ msgid "%s could not be renamed" msgstr "%s tidak dapat diubah nama" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Unggah" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 1c9446d3d2..c1fe83f4b4 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,8 +520,8 @@ msgid "Allow mail notification" msgstr "Izinkan pemberitahuan email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/is/core.po b/l10n/is/core.po index e1f48b77a8..fd246d9bca 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Stillingar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Er að vista ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sek." -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "í dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "í gær" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "mánuðir síðan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "síðasta ári" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "einhverjum árum" @@ -295,12 +291,12 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Villa" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -364,71 +360,71 @@ msgstr "Deila með tölvupósti:" msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "getur breytt" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "mynda" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uppfæra" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eyða" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deila" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Tölvupóstur sendur" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aðvörun" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/is/files.po b/l10n/is/files.po index 9453eebd35..cdaed9930a 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Senda inn" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 3e64391c26..5ed711d9c1 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/it/core.po b/l10n/it/core.po index 02025132f4..1f492f0172 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,63 +138,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "oggi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ieri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mese scorso" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesi fa" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "anno scorso" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anni fa" @@ -298,12 +294,12 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Errore" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -367,71 +363,71 @@ msgstr "Condividi tramite email:" msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifica tramite email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "può modificare" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creare" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aggiornare" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimina" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "condividi" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Avviso" @@ -459,7 +455,7 @@ msgstr "Modifica etichette" msgid "Error loading dialog template: {error}" msgstr "Errore durante il caricamento del modello di finestra: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nessuna etichetta selezionata per l'eliminazione." diff --git a/l10n/it/files.po b/l10n/it/files.po index 82da73f8eb..487dde5010 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s non può essere rinominato" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Carica" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 2df8f3a821..13bbcdee32 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index cf2f3a1df3..18f71bf614 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -140,59 +140,55 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "保存中..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今日" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨日" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n日前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "1ヶ月前" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%nヶ月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "数ヶ月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "1年前" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "数年前" @@ -295,12 +291,12 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "エラー" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -364,71 +360,71 @@ msgstr "メール経由で共有:" msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "グループ" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "共有解除" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "メールで通知" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "編集を許可" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "アクセス権限" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "作成" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "アップデート" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "削除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "共有" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "メールを送信しました" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "警告" @@ -456,7 +452,7 @@ msgstr "タグを編集" msgid "Error loading dialog template: {error}" msgstr "メッセージテンプレートの読み込みエラー: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "削除するタグが選択されていません。" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 2b916be565..cc1723751b 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "アップロード" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index cf815cf287..449ce5efff 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "メール通知を許可" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/jv/core.po b/l10n/jv/core.po index 17dbc1170a..64f25812fd 100644 --- a/l10n/jv/core.po +++ b/l10n/jv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/jv/files.po b/l10n/jv/files.po index 010013ec49..5b2f6e443b 100644 --- a/l10n/jv/files.po +++ b/l10n/jv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 17:00+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index fad4b71910..fe9b21e6e5 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index c8b1e65a00..41fcdca0f5 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "შენახვა..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "დღეს" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "თვის წინ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "წლის წინ" @@ -289,12 +285,12 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "შეცდომა" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -358,71 +354,71 @@ msgstr "გააზიარე მეილზე" msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ჯგუფი" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "შექმნა" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "განახლება" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "წაშლა" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "გაზიარება" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "იმეილი გაიგზავნა" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "გაფრთხილება" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 9a05853f50..92c896554f 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ატვირთვა" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index f4d3be0588..63260285df 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/km/core.po b/l10n/km/core.po index 15f1347c38..087b7e596a 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,59 +135,55 @@ msgstr "ខែវិច្ឆិកា" msgid "December" msgstr "ខែធ្នូ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ការកំណត់" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "កំពុងរក្សាទុក" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "វិនាទីមុន" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n នាទីមុន" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ម៉ោងមុន" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ថ្ងៃនេះ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ម្សិលមិញ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ថ្ងៃមុន" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ខែមុន" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ខែមុន" -#: js/js.js:1107 -msgid "months ago" -msgstr "ខែមុន" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ឆ្នាំមុន" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ឆ្នាំមុន" @@ -290,12 +286,12 @@ msgstr "បានចែករំលែក" msgid "Share" msgstr "ចែករំលែក" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "កំហុស" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "កំហុសពេលចែករំលែក" @@ -359,71 +355,71 @@ msgstr "ចែករំលែកតាមអ៊ីមែល៖" msgid "No people found" msgstr "រកមិនឃើញមនុស្សណាម្នាក់" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ក្រុម" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "មិនអនុញ្ញាតឲ្យមានការចែករំលែកឡើងវិញ" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "បានចែករំលែកក្នុង {item} ជាមួយ {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "លែងចែករំលែក" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "អាចកែប្រែ" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "សិទ្ធិបញ្ជា" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "បង្កើត" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ធ្វើបច្ចុប្បន្នភាព" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "លុប" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ចែករំលែក" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "បានការពារដោយពាក្យសម្ងាត់" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "កំពុងផ្ញើ ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "បានផ្ញើអ៊ីមែល" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "បម្រាម" @@ -451,7 +447,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/km/files.po b/l10n/km/files.po index 3a2dbcd7c2..16c907800e 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ផ្ទុកឡើង" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index e4144427d5..23a00b4f69 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,7 +522,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 0d2fc8f5d5..77ca23e3f5 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 0476da9576..2ff94b7e64 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index c8d82c665e..7249040d4f 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 3cccdaed7a..302d5860f1 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,59 +141,55 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "설정" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "저장 중..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "초 전" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "오늘" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "어제" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "지난 달" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:1107 -msgid "months ago" -msgstr "개월 전" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "작년" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "년 전" @@ -296,12 +292,12 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "오류" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -365,71 +361,71 @@ msgstr "이메일로 공유:" msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "그룹" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "이메일로 알림" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "편집 가능" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "접근 제어" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "생성" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "업데이트" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "삭제" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "공유" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "이메일 발송됨" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "경고" @@ -457,7 +453,7 @@ msgstr "태그 편집" msgid "Error loading dialog template: {error}" msgstr "대화 상자 템플릿을 불러오는 중 오류 발생: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "삭제할 태그를 선택하지 않았습니다." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index a186b4fa9b..d66a039e17 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "%s의 이름을 변경할 수 없습니다" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "업로드" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 8ebaba25f0..2c0186c6f7 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "메일 알림 허용" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 54a062281a..b27679a529 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "دهستكاری" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "پاشکهوتدهکات..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ههڵه" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ئاگاداری" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 854076585a..48266f0cc6 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "بارکردن" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index fa631b8021..ac3dc088f0 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/lb/core.po b/l10n/lb/core.po index aae46a0cf8..7b83600de6 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Astellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speicheren..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n Minutt hir" msgstr[1] "%n Minutten hir" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "haut" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gëschter" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "leschte Mount" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Méint hir" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Joren hir" @@ -296,12 +292,12 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feeler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -365,71 +361,71 @@ msgstr "Via E-Mail deelen:" msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "via e-mail Bescheed ginn" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann änneren" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualiséieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "läschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deelen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email geschéckt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -457,7 +453,7 @@ msgstr "Tags editéieren" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index c2a3c2079a..7c7f917f67 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Eroplueden" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 6d37f4bd60..2f42e135ce 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 3b56f1e5fa..43b150af1a 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -139,67 +139,63 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saugoma..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "šiandien" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "vakar" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:1107 -msgid "months ago" -msgstr "prieš mėnesį" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "praeitais metais" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "prieš metus" @@ -304,12 +300,12 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Klaida" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -373,71 +369,71 @@ msgstr "Dalintis per el. paštą:" msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupė" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "pranešti el. paštu" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "sukurti" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atnaujinti" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ištrinti" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dalintis" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Laiškas išsiųstas" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Įspėjimas" @@ -465,7 +461,7 @@ msgstr "Redaguoti žymes" msgid "Error loading dialog template: {error}" msgstr "Klaida įkeliant dialogo ruošinį: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Trynimui nepasirinkta jokia žymė." diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index e6d1e3c000..c0027ad321 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,8 +312,9 @@ msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Įkelti" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 9d6419643c..1d104c2197 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "Leisti el. pašto perspėjimą" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 2d6b65f4cc..57162fa281 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,67 +135,63 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saglabā..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "šodien" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "vakar" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:1107 -msgid "months ago" -msgstr "mēnešus atpakaļ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "gadus atpakaļ" @@ -300,12 +296,12 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Kļūda" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -369,71 +365,71 @@ msgstr "Dalīties, izmantojot e-pastu:" msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupa" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "izveidot" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atjaunināt" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "dzēst" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dalīties" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Vēstule nosūtīta" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Brīdinājums" @@ -461,7 +457,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 65a97c0e0f..d1c39d7bb3 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Augšupielādēt" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 7f9f66604d..8a4ea7c52b 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 2152495b4d..b46bd8c51e 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Подесувања" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Снимам..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "денеска" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "минатиот месец" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "пред месеци" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "минатата година" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "пред години" @@ -295,12 +291,12 @@ msgstr "Споделен" msgid "Share" msgstr "Сподели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -364,71 +360,71 @@ msgstr "Сподели по е-пошта:" msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "извести преку електронска пошта" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да се измени" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "креирај" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ажурирај" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "избриши" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "сподели" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Е-порака пратена" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Предупредување" @@ -456,7 +452,7 @@ msgstr "Уреди ги таговите" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Не се селектирани тагови за бришење." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 1a227389c3..60288a5f0c 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s не може да биде преименуван" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Подигни" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 1082dea664..66c5b91e91 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Овозможи известување по електронска пошта" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ml/core.po b/l10n/ml/core.po index 23e35f07f3..bc9734a075 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ml/files.po b/l10n/ml/files.po index 6d8c4b1448..833a2dc55d 100644 --- a/l10n/ml/files.po +++ b/l10n/ml/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index 648904e122..873ea5feae 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index fc5ab544f5..bb6ef01bf7 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 73eaed182f..d2182dd3d0 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 31883d001e..8dabc76b3d 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/mn/core.po b/l10n/mn/core.po index f6d739d99c..c2ebf09969 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/mn/files.po b/l10n/mn/files.po index a1d5b8b659..d42551ca82 100644 --- a/l10n/mn/files.po +++ b/l10n/mn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index 122a7b465e..aab6d4b79f 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 276b33c5f5..a54952683d 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Tetapan" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Simpan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Ralat" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Amaran" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index fca9d7124c..340a13a8c6 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Muat naik" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a13c96d9be..0bb3d17d5d 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 4c8f0dee36..3d2f6e540d 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,130 +134,126 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "ယနေ့" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "နှစ် အရင်က" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "ရွေးချယ်" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ဟုတ်" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "မဟုတ်ဘူး" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "အိုကေ" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index d9b7a04a28..97826d20d6 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "ဖိုင်များ" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 0776a88e66..f4a4215acd 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 6709e9a7d6..4ebea6e5d8 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,63 +138,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Lagrer..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt siden" msgstr[1] "%n minutter siden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "forrige måned" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1107 -msgid "months ago" -msgstr "måneder siden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "i fjor" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år siden" @@ -298,12 +294,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feil under deling" @@ -367,71 +363,71 @@ msgstr "Del på epost" msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Videredeling er ikke tillatt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Varsle på email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan endre" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "opprett" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "oppdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slett" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Feil ved nullstilling av utløpsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Advarsel" @@ -459,7 +455,7 @@ msgstr "Rediger merkelapper" msgid "Error loading dialog template: {error}" msgstr "Feil ved lasting av dialogmal: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ingen merkelapper valgt for sletting." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 41161d166d..66c6511bd3 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Last opp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 1847b9020b..d109f8b390 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Tillat påminnelser i e-post" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillat at brukere sender epost-påminnelser for delte filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index 93b4795b34..9ce7cea032 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 734a69de90..9798a89bf0 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index bf175932a2..9ab6b674d2 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ne/core.po b/l10n/ne/core.po index be84d37441..eccb815609 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index a36e68e7d4..368e981636 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index e84cb840e8..74a3a50b03 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nl/core.po b/l10n/nl/core.po index e3fa48b58c..f79ca47c00 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Instellingen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Opslaan" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "vandaag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gisteren" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "vorige maand" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:1107 -msgid "months ago" -msgstr "maanden geleden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "vorig jaar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jaar geleden" @@ -297,12 +293,12 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -366,71 +362,71 @@ msgstr "Deel via e-mail:" msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "groep" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "melden per e-mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creëer" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "bijwerken" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "verwijderen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deel" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Waarschuwing" @@ -458,7 +454,7 @@ msgstr "Bewerken tags" msgid "Error loading dialog template: {error}" msgstr "Fout bij laden dialoog sjabloon: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Geen tags geselecteerd voor verwijdering." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 07f271d5b9..4a28f3f9ce 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Uploaden" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index ee2474973c..aa5c19bc22 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index f5053b3197..ad0c0b9813 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Lagrar …" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "førre månad" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:1107 -msgid "months ago" -msgstr "månadar sidan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "i fjor" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år sidan" @@ -297,12 +293,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feil ved deling" @@ -366,71 +362,71 @@ msgstr "Del over e-post:" msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Udel" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan endra" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "lag" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "oppdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slett" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Åtvaring" @@ -458,7 +454,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 279c018f4b..0efab54f71 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Last opp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 71b46c3fe4..28284ea31b 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,7 +523,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index ebd63b4cd6..654b95dd28 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index abf737189e..f07a5aa64b 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index 5dcb3b4cdb..d59a28ea0d 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/oc/core.po b/l10n/oc/core.po index e083a731ff..fada975324 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuracion" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Enregistra..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "uèi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ièr" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes passat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses a" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "an passat" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ans a" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al partejar" @@ -363,71 +359,71 @@ msgstr "Parteja tras corrièl :" msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grop" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crea" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "met a jorn" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "escafa" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "parteja" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 2162cf8169..d74ed7c572 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Amontcarga" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index f7f91820ef..3678b57ca9 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/or_IN/core.po b/l10n/or_IN/core.po new file mode 100644 index 0000000000..fedef0897a --- /dev/null +++ b/l10n/or_IN/core.po @@ -0,0 +1,805 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:87 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:119 ajax/share.php:161 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:10 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:13 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:16 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:489 +msgid "Settings" +msgstr "" + +#: js/js.js:589 +msgid "Saving..." +msgstr "" + +#: js/js.js:1246 +msgid "seconds ago" +msgstr "" + +#: js/js.js:1247 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1248 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1249 +msgid "today" +msgstr "" + +#: js/js.js:1250 +msgid "yesterday" +msgstr "" + +#: js/js.js:1251 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1252 +msgid "last month" +msgstr "" + +#: js/js.js:1253 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1254 +msgid "last year" +msgstr "" + +#: js/js.js:1255 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:125 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:151 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:187 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:204 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:224 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:352 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:366 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:372 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:373 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:375 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:384 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:394 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:466 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:790 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:385 +msgid "group" +msgstr "" + +#: js/share.js:357 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:401 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:423 +msgid "Unshare" +msgstr "" + +#: js/share.js:431 +msgid "notify by email" +msgstr "" + +#: js/share.js:434 +msgid "can edit" +msgstr "" + +#: js/share.js:436 +msgid "access control" +msgstr "" + +#: js/share.js:439 +msgid "create" +msgstr "" + +#: js/share.js:442 +msgid "update" +msgstr "" + +#: js/share.js:445 +msgid "delete" +msgstr "" + +#: js/share.js:448 +msgid "share" +msgstr "" + +#: js/share.js:721 +msgid "Password protected" +msgstr "" + +#: js/share.js:734 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:752 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:777 +msgid "Sending ..." +msgstr "" + +#: js/share.js:788 +msgid "Email sent" +msgstr "" + +#: js/share.js:812 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:264 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.<br>If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.<br>If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!<br>Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:140 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:144 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"%s\" target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " +"JavaScript</a> and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> " +"with you.<br><a href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/or_IN/files.po b/l10n/or_IN/files.po new file mode 100644 index 0000000000..5297c12540 --- /dev/null +++ b/l10n/or_IN/files.po @@ -0,0 +1,409 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:146 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:57 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:33 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:75 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:82 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:83 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:85 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:86 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:87 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:88 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:89 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:107 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:169 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:179 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:194 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:254 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:266 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:276 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:353 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:398 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:490 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:555 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:559 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:561 js/filelist.js:585 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:613 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:626 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:666 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:164 +msgid "Share" +msgstr "" + +#: js/fileactions.js:177 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:238 +msgid "Rename" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "" + +#: js/filelist.js:251 js/filelist.js:1129 +msgid "Pending" +msgstr "" + +#: js/filelist.js:612 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:775 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:808 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:1037 js/filelist.js:1076 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +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 "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:331 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:570 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:571 templates/index.php:79 +msgid "Size" +msgstr "" + +#: js/files.js:572 templates/index.php:81 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:93 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:22 +#, php-format +msgid "Upload (max. %s)" +msgstr "" + +#: templates/admin.php:4 +msgid "File handling" +msgstr "" + +#: templates/admin.php:6 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:14 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:16 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:19 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:21 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:25 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "New folder" +msgstr "" + +#: templates/index.php:13 +msgid "Folder" +msgstr "" + +#: templates/index.php:16 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:45 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:51 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:84 templates/index.php:85 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" diff --git a/l10n/or_IN/files_encryption.po b/l10n/or_IN/files_encryption.po new file mode 100644 index 0000000000..3de51d97c5 --- /dev/null +++ b/l10n/or_IN/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +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 "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"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." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:2 templates/settings-personal.php:2 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:5 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:9 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:12 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:19 templates/settings-personal.php:50 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:27 templates/settings-personal.php:58 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:32 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:38 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:45 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:51 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:8 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:13 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:21 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:27 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:32 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:41 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:43 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:59 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/or_IN/files_external.po b/l10n/or_IN/files_external.po new file mode 100644 index 0000000000..91e961105d --- /dev/null +++ b/l10n/or_IN/files_external.po @@ -0,0 +1,136 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:318 js/settings.js:325 +msgid "Saved" +msgstr "" + +#: lib/config.php:598 +msgid "<b>Note:</b> " +msgstr "" + +#: lib/config.php:608 +msgid " and " +msgstr "" + +#: lib/config.php:630 +#, php-format +msgid "" +"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:632 +#, php-format +msgid "" +"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:634 +#, php-format +msgid "" +"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:2 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:27 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:9 +msgid "External storage" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Available for" +msgstr "" + +#: templates/settings.php:32 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:92 +msgid "No user or group" +msgstr "" + +#: templates/settings.php:95 +msgid "All Users" +msgstr "" + +#: templates/settings.php:97 +msgid "Groups" +msgstr "" + +#: templates/settings.php:105 +msgid "Users" +msgstr "" + +#: templates/settings.php:118 templates/settings.php:119 +#: templates/settings.php:158 templates/settings.php:159 +msgid "Delete" +msgstr "" + +#: templates/settings.php:132 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:135 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:150 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:168 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/or_IN/files_sharing.po b/l10n/or_IN/files_sharing.po new file mode 100644 index 0000000000..6a3737458a --- /dev/null +++ b/l10n/or_IN/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:33 +msgid "Shared by {owner}" +msgstr "" + +#: 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:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/or_IN/files_trashbin.po b/l10n/or_IN/files_trashbin.po new file mode 100644 index 0000000000..efddff7ea5 --- /dev/null +++ b/l10n/or_IN/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:3 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 +msgid "Error" +msgstr "" + +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:861 lib/trashbin.php:863 +msgid "restored" +msgstr "" + +#: templates/index.php:6 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:19 +msgid "Name" +msgstr "" + +#: templates/index.php:30 +msgid "Deleted" +msgstr "" + +#: templates/index.php:33 templates/index.php:34 +msgid "Delete" +msgstr "" diff --git a/l10n/or_IN/files_versions.po b/l10n/or_IN/files_versions.po new file mode 100644 index 0000000000..3ad5ed6f51 --- /dev/null +++ b/l10n/or_IN/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:39 +msgid "Versions" +msgstr "" + +#: js/versions.js:61 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:88 +msgid "More versions..." +msgstr "" + +#: js/versions.js:126 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:156 +msgid "Restore" +msgstr "" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po new file mode 100644 index 0000000000..b8ef391b22 --- /dev/null +++ b/l10n/or_IN/lib.po @@ -0,0 +1,356 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:880 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:232 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:233 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:234 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:259 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:260 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the <shipped>true</shipped> tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:62 private/json.php:87 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:74 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:134 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:135 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:137 +msgid "today" +msgstr "" + +#: private/template/functions.php:138 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:140 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:142 +msgid "last month" +msgstr "" + +#: private/template/functions.php:143 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:145 +msgid "last year" +msgstr "" + +#: private/template/functions.php:146 +msgid "years ago" +msgstr "" + +#: private/user/manager.php:232 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:237 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:241 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:246 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/or_IN/settings.po b/l10n/or_IN/settings.po new file mode 100644 index 0000000000..970127c656 --- /dev/null +++ b/l10n/or_IN/settings.po @@ -0,0 +1,838 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:17 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:36 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:68 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:73 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:81 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:86 changepassword/controller.php:97 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:55 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:243 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:313 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:48 personal.php:49 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the <a href=\"%s\">installation guides</a>." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow users to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:171 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:174 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:38 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:43 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:49 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:51 +msgid "See application website" +msgstr "" + +#: templates/apps.php:53 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:39 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:40 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:45 +msgid "New password" +msgstr "" + +#: templates/personal.php:49 +msgid "Change password" +msgstr "" + +#: templates/personal.php:61 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:76 +msgid "Email" +msgstr "" + +#: templates/personal.php:78 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:81 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:89 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:94 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:96 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:97 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:98 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:100 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:104 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:105 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:111 templates/personal.php:112 +msgid "Language" +msgstr "" + +#: templates/personal.php:131 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " +"WebDAV</a>" +msgstr "" + +#: templates/personal.php:151 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:157 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:162 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/or_IN/user_ldap.po b/l10n/or_IN/user_ldap.po new file mode 100644 index 0000000000..8e1675057b --- /dev/null +++ b/l10n/or_IN/user_ldap.po @@ -0,0 +1,534 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:983 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitive LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:45 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:45 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:46 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:47 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:47 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:54 +msgid "" +"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." +msgstr "" + +#: templates/settings.php:55 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:56 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:57 +msgid "" +"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." +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:59 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:60 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +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. " +"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." +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/or_IN/user_webdavauth.po b/l10n/or_IN/user_webdavauth.po new file mode 100644 index 0000000000..9d084c2331 --- /dev/null +++ b/l10n/or_IN/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:2 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:3 +msgid "Address: " +msgstr "" + +#: templates/settings.php:6 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 16e79ae93f..532f378789 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ਗਲ" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index d8cef14e9a..d2098c7aa8 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ਅੱਪਲੋਡ" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 4941f0d91b..1e9c29e76c 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/pl/core.po b/l10n/pl/core.po index f2bcd30e7e..1fa61458c8 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: bobie <maciej.przybecki@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,67 +138,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Zapisywanie..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dziś" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:1107 -msgid "months ago" -msgstr "miesięcy temu" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "lat temu" @@ -303,12 +299,12 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Błąd" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -372,71 +368,71 @@ msgstr "Współdziel poprzez e-mail:" msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupa" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "powiadom przez emaila" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "może edytować" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "utwórz" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uaktualnij" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "usuń" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "współdziel" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail wysłany" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Ostrzeżenie" @@ -464,7 +460,7 @@ msgstr "Edytuj tagi" msgid "Error loading dialog template: {error}" msgstr "Błąd podczas ładowania szablonu dialogu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nie zaznaczono tagów do usunięcia." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index af048c7ba9..972f9bcf32 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Wyślij" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 69bf7db7ac..8af3733a05 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: bobie <maciej.przybecki@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6a333fe063..13e8c470cc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoje" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ontem" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "último mês" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último ano" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -296,12 +292,12 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -365,71 +361,71 @@ msgstr "Compartilhar via e-mail:" msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por e-mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pode editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "controle de acesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "criar" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "remover" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartilhar" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aviso" @@ -457,7 +453,7 @@ msgstr "Editar etiqueta" msgid "Error loading dialog template: {error}" msgstr "Erro carregando diálogo de formatação:{error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nenhuma etiqueta selecionada para deleção." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index fbd360e35a..1d25159e22 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index a7c133b16a..5f8c4597d9 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 16:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 16:40+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "Usuários" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." @@ -74,7 +74,7 @@ msgstr "Download ZIP está desligado." msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Voltar para Arquivos" @@ -148,15 +148,15 @@ msgstr "Não é possível criar pasta app. Corrija as permissões. %s" msgid "Application is not enabled" msgstr "Aplicação não está habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erro de autenticação" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirou. Por favor recarregue a página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuário desconhecido" @@ -290,68 +290,68 @@ msgstr "%s compartilhou »%s« com você" msgid "Could not find category \"%s\"" msgstr "Impossível localizar categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundos atrás" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "ha %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "ha %n horas" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoje" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ontem" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "ha %n dias" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "último mês" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "ha %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "último ano" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anos atrás" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Somente os seguintes caracteres são permitidos no nome do usuário: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Este nome de usuário já está sendo usado" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 7cb0d10fe6..4b4186a1d0 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Permitir notificação por email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 5f9b5962c6..4db354e6cd 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,63 +141,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configurações" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "A guardar..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoje" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ontem" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ultímo mês" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ano passado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -301,12 +297,12 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -370,71 +366,71 @@ msgstr "Partilhar via email:" msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Notificar por email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pode editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "criar" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "apagar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partilhar" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aviso" @@ -462,7 +458,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Erro ao carregar modelo de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Não foram escolhidas etiquetas para apagar." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 76c39e0d41..7712e0ca5e 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Carregar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 2d44adbc09..725d568302 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -527,8 +527,8 @@ msgid "Allow mail notification" msgstr "Permitir notificação por email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index d0f54e679b..6a5fd3a8b1 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,67 +138,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Setări" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Se salvează..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "astăzi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ieri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ultima lună" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "luni în urmă" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ultimul an" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ani în urmă" @@ -303,12 +299,12 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Eroare" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -372,71 +368,71 @@ msgstr "Distribuie prin email:" msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "poate edita" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control acces" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creare" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizare" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ștergere" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partajare" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Mesajul a fost expediat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Atenție" @@ -464,7 +460,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 56ffcff99f..bb6268901e 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -316,8 +316,9 @@ msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Încărcă" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index ca5e79e740..edb9cda2e6 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,7 +522,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b94a958593..ce2d8e5a1e 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -151,67 +151,63 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Сохранение..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "сегодня" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:1107 -msgid "months ago" -msgstr "несколько месяцев назад" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "в прошлом году" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "несколько лет назад" @@ -316,12 +312,12 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Ошибка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -385,71 +381,71 @@ msgstr "Поделится через электронную почту:" msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "группа" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "уведомить по почте" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "может редактировать" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контроль доступа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "создать" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "обновить" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "удалить" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "открыть доступ" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Письмо отправлено" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Предупреждение" @@ -477,7 +473,7 @@ msgstr "Изменить метки" msgid "Error loading dialog template: {error}" msgstr "Ошибка загрузки шаблона диалога: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Не выбраны меток для удаления." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 848ba105ce..6f7fbe2af7 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -321,8 +321,9 @@ msgid "%s could not be renamed" msgstr "%s не может быть переименован" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Загрузка" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 7e562b8b46..8894a19713 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -535,8 +535,8 @@ msgid "Allow mail notification" msgstr "Разрешить уведомление по почте" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 81640e8ede..29638affc8 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "අද" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "මාස කීපයකට පෙර" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "දෝෂයක්" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "විද්යුත් තැපෑල මඟින් බෙදා msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "කණ්ඩායම" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ප්රවේශ පාලනය" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "සදන්න" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "මකන්න" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "අවවාදය" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 65cb451481..c2b7eceb77 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "උඩුගත කරන්න" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 18a9854df9..d276c9eceb 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 65348532a4..d0b50414ec 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,140 +134,136 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -368,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "skupina" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 6f6661a407..e98673d655 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -309,7 +309,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index bff1d72043..e88024cd09 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index bdf4db71d4..7cbb3c8c84 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,67 +136,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Ukladám..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dnes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včera" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:1107 -msgid "months ago" -msgstr "pred mesiacmi" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "minulý rok" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "pred rokmi" @@ -241,7 +237,7 @@ msgstr "Nové súbory" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Už existujúce súbory" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" @@ -301,12 +297,12 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -370,71 +366,71 @@ msgstr "Zdieľať cez email:" msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "skupina" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "informovať emailom" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "prístupové práva" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "vytvoriť" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualizovať" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "vymazať" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "zdieľať" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email odoslaný" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varovanie" @@ -462,7 +458,7 @@ msgstr "Upraviť štítky" msgid "Error loading dialog template: {error}" msgstr "Chyba pri načítaní šablóny dialógu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nie sú vybraté štítky na zmazanie." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 7f7762eae3..f76a3099e2 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mhh <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Odoslať" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index a57f418836..6ce0145b55 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh <marian.hvolka@stuba.sk>, 2013 +# mhh <marian.hvolka@stuba.sk>, 2013-2014 # martin, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07:20+0000\n" +"Last-Translator: mhh <marian.hvolka@stuba.sk>\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" @@ -103,7 +103,7 @@ msgstr "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Počiatočné šifrovanie beží... Skúste to neskôr znovu." #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -113,91 +113,91 @@ msgstr "Choďte priamo do vášho" msgid "personal settings" msgstr "osobné nastavenia" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Šifrovanie" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Povoliť obnovovací kľúč (umožňuje obnoviť používateľské súbory v prípade straty hesla):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Heslo obnovovacieho kľúča" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "Zopakujte heslo kľúča pre obnovu" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Povolené" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Zakázané" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Zmeniť heslo obnovovacieho kľúča:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Staré heslo obnovovacieho kľúča" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nové heslo obnovovacieho kľúča" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "Zopakujte nové heslo kľúča pre obnovu" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Zmeniť heslo" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "Vaše heslo súkromného kľúča je rovnaké ako Vaše prihlasovacie heslo:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "Nastavte si staré heslo súkromného kľúča k Vášmu súčasnému prihlasovaciemu heslu." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Ak si nepamätáte svoje staré heslo, môžete požiadať správcu o obnovenie svojich súborov." -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Staré prihlasovacie heslo" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Súčasné prihlasovacie heslo" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "Aktualizovať heslo súkromného kľúča" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "Povoliť obnovu hesla:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Povolenie Vám umožní znovu získať prístup k Vašim zašifrovaným súborom, ak stratíte heslo" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Nastavenie obnovy súborov aktualizované" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "Nemožno aktualizovať obnovenie súborov" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 0a04a512b6..7054f3c2f5 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh <marian.hvolka@stuba.sk>, 2013 +# mhh <marian.hvolka@stuba.sk>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07:20+0000\n" +"Last-Translator: mhh <marian.hvolka@stuba.sk>\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" @@ -42,34 +42,34 @@ msgstr "Chyba pri konfigurácii úložiska Google drive" msgid "Saved" msgstr "Uložené" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " -msgstr "" +msgstr "<b>Poznámka:</b> " -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "a" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Poznámka:</b> cURL podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Poznámka:</b> FTP podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "<b>Poznámka:</b> \"%s\" nie je nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." #: templates/settings.php:2 msgid "External Storage" @@ -93,7 +93,7 @@ msgstr "Možnosti" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "K dispozícii pre" #: templates/settings.php:32 msgid "Add storage" @@ -101,7 +101,7 @@ msgstr "Pridať úložisko" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Žiadny používateľ alebo skupina" #: templates/settings.php:95 msgid "All Users" @@ -126,7 +126,7 @@ msgstr "Povoliť externé úložisko" #: templates/settings.php:135 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Povoliť používateľom pripojiť tieto externé úložiská" #: templates/settings.php:150 msgid "SSL root certificates" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 6278b3b324..f39c5f873e 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Povoliť odosielať upozornenia emailom" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 6d28f29b2e..255c325f54 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07:30+0000\n" +"Last-Translator: mhh <marian.hvolka@stuba.sk>\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" @@ -167,7 +167,7 @@ msgstr "Pomoc" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Skupiny spĺňajúce tieto kritériá sú k dispozícii v %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -203,7 +203,7 @@ msgstr "nájdené skupiny" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Používateľov prihlásiť pomocou tohto atribútu:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -271,7 +271,7 @@ msgstr "V rozšírenom nastavení môžete zadať základné DN pre používate #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Obmedziť %s prístup na používateľov spĺňajúcich tieto kritériá:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -340,7 +340,7 @@ msgstr "Pripojiť sa len k záložnému serveru." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "LDAP server je citlivý na veľkosť písmen (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." @@ -415,7 +415,7 @@ msgstr "Priradenie člena skupiny" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Vnorené skupiny" #: templates/settings.php:39 msgid "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 510618e32b..8d398d85e7 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -136,19 +136,19 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -156,7 +156,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -164,15 +164,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "danes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včeraj" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -180,11 +180,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -192,15 +192,11 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesecev nazaj" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "lansko leto" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "let nazaj" @@ -467,7 +463,7 @@ msgstr "Uredi oznake" msgid "Error loading dialog template: {error}" msgstr "Napaka nalaganja predloge pogovornega okna: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ni izbranih oznak za izbris." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 1e9272d4d5..e5bf374f77 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -314,8 +314,9 @@ msgid "%s could not be renamed" msgstr "%s ni mogoče preimenovati" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Pošlji" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index fd91045bed..08a73d5825 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -88,17 +88,17 @@ msgstr "Skupine ni mogoče dodati" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Datoteke so uspešno odšifrirane" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom." #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Dovoli obvestila preko elektronske pošte" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 5c17765aa8..170478f66a 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Parametra" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Duke ruajtur..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "sot" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "dje" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:1107 -msgid "months ago" -msgstr "muaj më parë" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "vite më parë" @@ -296,12 +292,12 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Veprim i gabuar" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -365,71 +361,71 @@ msgstr "Nda me email:" msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupi" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "krijo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "azhurno" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimino" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "nda" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email-i u dërgua" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 4232355dcb..879f8c7555 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Ngarko" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 8f882f13d2..0f7ca7d023 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sr/core.po b/l10n/sr/core.po index f609ea8b9f..09d3613ff3 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,67 +134,63 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Поставке" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Чување у току..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "данас" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "јуче" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "месеци раније" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "прошле године" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "година раније" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -368,71 +364,71 @@ msgstr "Подели поштом:" msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да мења" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "права приступа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "направи" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ажурирај" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "обриши" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "подели" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Порука је послата" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Упозорење" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index ea405fff7b..11e7f11340 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Отпреми" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 9603dcd0c1..4691d1e387 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index df657f78ca..b4e75d7309 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,67 +136,63 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Danas" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "juče" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Prije %n dan." msgstr[1] "Prije %n dana." msgstr[2] "Prije %n dana." -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "pre nekoliko meseci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "prošle godine" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "pre nekoliko godina" @@ -301,12 +297,12 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -370,71 +366,71 @@ msgstr "Deli putem e-maila" msgid "No people found" msgstr "Nema pronađenih ljudi" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dalje deljenje nije dozvoljeno" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Deljeno u {item} sa {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ukljoni deljenje" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "dozvoljene izmene" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "napravi" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ažuriranje" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "brisanje" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deljenje" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email poslat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -462,7 +458,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 0c17a8d6aa..f7a9bdebf4 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Pošalji" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index dbabd2061b..312bf5473b 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/su/core.po b/l10n/su/core.po index ac15217b14..ae84b0e517 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/su/files.po b/l10n/su/files.po index f02bfd4f57..8de270c09b 100644 --- a/l10n/su/files.po +++ b/l10n/su/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/su/settings.po b/l10n/su/settings.po index b5fd5ad46f..3d504c44ba 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 4e288cd7ea..fc9f4fd593 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: AsavarTzeth <asavartzeth@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -142,63 +142,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Inställningar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Sparar..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "förra månaden" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:1107 -msgid "months ago" -msgstr "månader sedan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "förra året" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år sedan" @@ -302,12 +298,12 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fel" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fel vid delning" @@ -371,71 +367,71 @@ msgstr "Dela via e-post:" msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "informera via e-post" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan redigera" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "skapa" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uppdatera" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "radera" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dela" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varning" @@ -463,7 +459,7 @@ msgstr "Editera taggar" msgid "Error loading dialog template: {error}" msgstr "Fel under laddning utav dialog mall: {fel}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Inga taggar valda för borttagning." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index a1f2093bc2..445f27234a 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: AsavarTzeth <asavartzeth@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Ladda upp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d094158f4f..99f3ae24b8 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: henrikhjelm <mailto@henrikhjelm.se>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -531,8 +531,8 @@ msgid "Allow mail notification" msgstr "Tillåt e-post notifikation" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillåt användare att skicka e-port notifikationer för delade filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 4670128c67..61d4b11f7e 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index e98284e51f..275cecc8fd 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 51475acbd4..525ca027ce 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 71bb9a90fc..01f4c51118 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "இன்று" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "மாதங்களுக்கு முன்" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "வழு" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -363,71 +359,71 @@ msgstr "மின்னஞ்சலினூடான பகிர்வு: " msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "குழு" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "நீக்குக" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "எச்சரிக்கை" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 59125f40d8..8b8c81ad67 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "பதிவேற்றுக" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index edea4a40fb..fc3cdcea42 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/te/core.po b/l10n/te/core.po index 09c8064439..8c91096434 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n నిమిషం క్రితం" msgstr[1] "%n నిమిషాల క్రితం" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n గంట క్రితం" msgstr[1] "%n గంటల క్రితం" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ఈరోజు" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n రోజు క్రితం" msgstr[1] "%n రోజుల క్రితం" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n నెల క్రితం" msgstr[1] "%n నెలల క్రితం" -#: js/js.js:1107 -msgid "months ago" -msgstr "నెలల క్రితం" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "పొరపాటు" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "తొలగించు" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "హెచ్చరిక" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index e9b3f646dd..50b0717d87 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 2cafc7c1bf..aa6d2dc348 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0b2245ab07..21a8048179 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -135,63 +135,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5d016437f5..ea124e27fe 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -305,7 +305,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 3ebc52afb2..f0dd2975cc 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index c05cc89332..f7b5e4e305 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 14a3151d37..a20e27c699 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index c4de45e217..d3fab126a2 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,6 +35,10 @@ msgstr "" msgid "Error" msgstr "" +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + #: js/trash.js:264 msgid "Deleted Files" msgstr "" @@ -51,10 +55,6 @@ msgstr "" msgid "Name" msgstr "" -#: templates/index.php:22 templates/index.php:24 -msgid "Restore" -msgstr "" - #: templates/index.php:30 msgid "Deleted" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 9f25be229f..dc51b39052 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 805e0b895c..79fd7165e6 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 2cac8f8b91..c293e6187a 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 56bf1970de..f52f3d53d7 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -519,7 +519,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9bb697c59c..50f8114aaf 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index ad4ebbcb2d..a6d9905168 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: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 2782a3812c..9486525543 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "วันนี้" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "เดือน ที่ผ่านมา" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -289,12 +285,12 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -358,71 +354,71 @@ msgstr "แชร์ผ่านทางอีเมล" msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "กลุ่มผู้ใช้งาน" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "สร้าง" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "อัพเดท" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ลบ" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "แชร์" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "คำเตือน" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index e770e53383..acd5249bc5 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "อัพโหลด" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 029e848b87..051c00d0c7 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 51a7eb73b6..f25ab1e0b9 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer <volkangezer@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,63 +138,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "saniyeler önce" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "bugün" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "dün" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "geçen ay" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:1107 -msgid "months ago" -msgstr "aylar önce" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "geçen yıl" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "yıllar önce" @@ -459,7 +455,7 @@ msgstr "Etiketleri düzenle" msgid "Error loading dialog template: {error}" msgstr "İletişim şablonu yüklenirken hata: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Silmek için bir etiket seçilmedi." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index cf5079ec50..67cdf2e53d 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer <volkangezer@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Yükle" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 1ba73232a7..f5e4733f40 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer <volkangezer@gmail.com>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index 528cc7ed88..30ead15ba0 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index 0e5165652e..707f99a954 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 614dba7677..87462e65a2 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 19bde853e7..e58767e0b0 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -134,59 +134,55 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "بۈگۈن" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خاتالىق" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "گۇرۇپپا" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index f9d8866073..8433443fba 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "يۈكلە" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index fe39905af3..af673c0410 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 9bfa59aee1..466adb3e73 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,67 +135,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Налаштування" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "сьогодні" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчора" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "минулого місяця" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:1107 -msgid "months ago" -msgstr "місяці тому" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "минулого року" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "роки тому" @@ -300,12 +296,12 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Помилка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -369,71 +365,71 @@ msgstr "Опублікувати через Ел. пошту:" msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "повідомити по Email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може редагувати" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контроль доступу" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "створити" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "оновити" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "видалити" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "опублікувати" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Ел. пошта надіслана" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Попередження" @@ -461,7 +457,7 @@ msgstr "Редагувати теги" msgid "Error loading dialog template: {error}" msgstr "Помилка при завантаженні шаблону діалогу: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Жодних тегів не обрано для видалення." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index af74248bb4..cbb9d10fe2 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# zubr139 <zubr139@ukr.net>, 2013 +# zubr139, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s не може бути перейменований" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Вивантажити" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bf659a93c1..481bf1bd97 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# zubr139 <zubr139@ukr.net>, 2013 +# zubr139, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ur/core.po b/l10n/ur/core.po index ccec776d8f..7324073f77 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ur/files.po b/l10n/ur/files.po index 7b6b3cbb2c..5a528dd078 100644 --- a/l10n/ur/files.po +++ b/l10n/ur/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index ce88154e1b..f346523b7a 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index b00b13ab25..3a8d9c43dc 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ایرر" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ختم کریں" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "شئیر کریں" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 1d52677ac9..d4889dd755 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 5bb896a5f8..a365ceecd6 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 6685162cdf..f673c079f6 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/uz/files.po b/l10n/uz/files.po index cbb3c8601e..8a8f954d40 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index bd278d7cf0..a63bd15c83 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 4cc800ca83..ec8e73f8f1 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,59 +138,55 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Đang lưu..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n phút trước" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n giờ trước" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hôm nay" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ngày trước" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "tháng trước" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n tháng trước" -#: js/js.js:1107 -msgid "months ago" -msgstr "tháng trước" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "năm trước" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "năm trước" @@ -293,12 +289,12 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Lỗi" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -362,71 +358,71 @@ msgstr "Chia sẻ thông qua email" msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "nhóm" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Thông báo qua email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "tạo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "cập nhật" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "xóa" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "chia sẻ" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email đã được gửi" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Cảnh báo" @@ -454,7 +450,7 @@ msgstr "Sửa thẻ" msgid "Error loading dialog template: {error}" msgstr "Lỗi khi tải mẫu hội thoại: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Không có thẻ nào được chọn để xóa" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 97655a16ce..824d518f55 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s không thể đổi tên" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Tải lên" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index f62d71cb7e..2b090bd48a 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 8a5f79f166..543b6afc92 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 14:43+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -139,59 +139,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "设置" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "保存中" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今天" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨天" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "上月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "去年" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "年前" @@ -455,7 +451,7 @@ msgstr "编辑标签" msgid "Error loading dialog template: {error}" msgstr "加载对话框模板出错: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "请选择要删除的标签。" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 77df595e7f..1078d24b82 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s 不能被重命名" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上传" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index c0450bf1c7..38db6ba96f 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -527,8 +527,8 @@ msgid "Allow mail notification" msgstr "允许邮件通知" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "允许用户为共享的文件发送邮件通知" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 1c9c0476f6..6cf893c49e 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今日" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨日" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "前一月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "個月之前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -358,71 +354,71 @@ msgstr "以電郵分享" msgid "No people found" msgstr "找不到" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "取消分享" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "新增" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "更新" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "刪除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "分享" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "郵件已傳" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index ebc0166930..2e16110784 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上傳" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index b2f87f3561..7021c16fca 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 84b69c5f75..db4cd8f43d 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,59 +136,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今天" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨天" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "上個月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "幾個月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "去年" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "幾年前" @@ -291,12 +287,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -360,71 +356,71 @@ msgstr "透過電子郵件分享:" msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "群組" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "取消分享" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "以 email 通知" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "可編輯" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "存取控制" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "建立" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "更新" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "刪除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "分享" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email 已寄出" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "警告" @@ -452,7 +448,7 @@ msgstr "編輯標籤" msgid "Error loading dialog template: {error}" msgstr "載入對話樣板出錯:{error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "沒有選擇要刪除的標籤" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index fa6a8e3db2..93e6dfb09e 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -305,8 +305,9 @@ msgid "%s could not be renamed" msgstr "無法重新命名 %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上傳" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1e1d3a7669..d67101ebc5 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "允許郵件通知" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "允許使用者分享檔案時寄出通知郵件" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/lib/l10n/es_CR.php b/lib/l10n/es_CR.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/es_CR.php @@ -0,0 +1,8 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/or_IN.php b/lib/l10n/or_IN.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/or_IN.php @@ -0,0 +1,8 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index cdc689a211..d62c69adfa 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "السماح للمستعملين بإعادة المشاركة مع أي أحد ", "Allow users to only share with users in their groups" => "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم", "Allow mail notification" => "السماح بتنبيهات البريد الالكتروني.", -"Allow user to send mail notification for shared files" => "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة ", "Security" => "حماية", "Enforce HTTPS" => "فرض HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 9f1d51fd62..0a4324e5a5 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permet compartir amb qualsevol", "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup", "Allow mail notification" => "Permet notificacions per correu electrónic", -"Allow user to send mail notification for shared files" => "Permet a l'usuari enviar notificacions de fitxers compartits per correu ", "Security" => "Seguretat", "Enforce HTTPS" => "Força HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 1f3c111a17..cbe552d23d 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -16,6 +16,8 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nelze změnit celé jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", +"Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", @@ -111,7 +113,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Allow mail notification" => "Povolit e-mailová upozornění", -"Allow user to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index df8d2c419b..0a755da9fd 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillad brugere at dele med alle", "Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper", "Allow mail notification" => "Tillad mail underretninger", -"Allow user to send mail notification for shared files" => "Tillad brugere at sende mail underretninger for delte filer", "Security" => "Sikkerhed", "Enforce HTTPS" => "Gennemtving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 13395d2052..e9105c8dda 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", -"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 2cfffdd374..8b9c455401 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", -"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 8655fa05c7..1ca97b63da 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -111,7 +111,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός με οποιονδήποτε", "Allow users to only share with users in their groups" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Allow mail notification" => "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου", -"Allow user to send mail notification for shared files" => "Επιτρέπει τους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους πελάτες να συνδέονται στο %s μέσω κρυπτογραφημένης σύνδεσης.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index b377a6b338..c61d1c8de2 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Unable to change full name", "Group already exists" => "Group already exists", "Unable to add group" => "Unable to add group", +"Files decrypted successfully" => "Files decrypted successfully", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Couldn't decrypt your files, please check your owncloud.log or ask your administrator", +"Couldn't decrypt your files, check your password and try again" => "Couldn't decrypt your files, check your password and try again", "Email saved" => "Email saved", "Invalid email" => "Invalid email", "Unable to delete group" => "Unable to delete group", @@ -111,7 +114,6 @@ $TRANSLATIONS = array( "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 313808cdc7..030106071c 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "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 correo electrónico", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico 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 cifrada.", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index b637dd4f14..6e8bc71132 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -89,7 +89,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Allow mail notification" => "Permitir notificaciones por correo", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo para archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada.", diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php index abfeaa577d..2eb3946cbb 100644 --- a/settings/l10n/es_MX.php +++ b/settings/l10n/es_MX.php @@ -88,7 +88,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "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 correo electrónico", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico 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 cifrada.", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 677ae3d6bb..b46e0138c1 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -111,7 +111,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Allow mail notification" => "Luba teavitused e-postiga", -"Allow user to send mail notification for shared files" => "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 0225fb00f6..054a40a61b 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -81,7 +81,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin elkarbanatzen", "Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen", "Allow mail notification" => "Baimendu posta bidezko jakinarazpenak", -"Allow user to send mail notification for shared files" => "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako", "Security" => "Segurtasuna", "Enforce HTTPS" => "Behartu HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index bec91c6970..f42a263c3f 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "اجازه به کابران برای اشتراک گذاری با همه", "Allow users to only share with users in their groups" => "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان", "Allow mail notification" => "مجاز نمودن اطلاع رسانی توسط ایمیل", -"Allow user to send mail notification for shared files" => "مجاز نمودن ارسال ایمیل توسط کاربر برای فایلهای به اشتراک گذاشته شده", "Security" => "امنیت", "Enforce HTTPS" => "وادار کردن HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "کلاینتها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bbceeb1983..d11ab032a0 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Allow mail notification" => "Salli sähköposti-ilmoitukset", -"Allow user to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 9475f6017f..7380a7abde 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "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/gl.php b/settings/l10n/gl.php index e0abc8e95b..b320609dd9 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Allow mail notification" => "Permitir o envío de notificacións por correo", -"Allow user to send mail notification for shared files" => "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index b3492b9fd7..a4133dbe40 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -89,7 +89,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "A felhasználók bárkivel megoszthatják állományaikat", "Allow users to only share with users in their groups" => "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak", "Allow mail notification" => "E-mail értesítések engedélyezése", -"Allow user to send mail notification for shared files" => "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról.", "Security" => "Biztonság", "Enforce HTTPS" => "Kötelező HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz.", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index a7b59d82f8..07c46a673d 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -87,7 +87,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Izinkan pengguna untuk berbagi kepada siapa saja", "Allow users to only share with users in their groups" => "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri", "Allow mail notification" => "Izinkan pemberitahuan email", -"Allow user to send mail notification for shared files" => "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan", "Security" => "Keamanan", "Enforce HTTPS" => "Selalu Gunakan HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index dd32d4029d..dd790b8511 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Allow mail notification" => "Consenti le notifiche tramite posta elettronica", -"Allow user to send mail notification for shared files" => "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", diff --git a/settings/l10n/ja.php b/settings/l10n/ja.php index 7a2802d588..ec52c74e2a 100644 --- a/settings/l10n/ja.php +++ b/settings/l10n/ja.php @@ -108,7 +108,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "ユーザーに誰とでも共有することを許可する", "Allow users to only share with users in their groups" => "ユーザーにグループ内のユーザーとのみ共有を許可する", "Allow mail notification" => "メール通知を許可", -"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザーに許可する", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", "Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化します。", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index a4506975e8..b17a25e4c3 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -98,7 +98,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "누구나와 공유할 수 있도록 허용", "Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용", "Allow mail notification" => "메일 알림 허용", -"Allow user to send mail notification for shared files" => "사용자에게 공유 파일에 대한 메일 알림을 허용합니다", "Security" => "보안", "Enforce HTTPS" => "HTTPS 강제 사용", "Forces the clients to connect to %s via an encrypted connection." => "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다.", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index d86d5086f0..2e7036aaae 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -77,7 +77,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Leisti naudotojams dalintis su bet kuo", "Allow users to only share with users in their groups" => "Leisti naudotojams dalintis tik su naudotojais savo grupėje", "Allow mail notification" => "Leisti el. pašto perspėjimą", -"Allow user to send mail notification for shared files" => "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų", "Security" => "Saugumas", "Enforce HTTPS" => "Reikalauti HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Verčia klientus jungtis prie %s per šifruotą ryšį.", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 00f2c7c2ad..975079eb39 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Овозможи корисниците да споделуваат со секого", "Allow users to only share with users in their groups" => "Овозможи корисниците да споделуваат со корисници од своите групи", "Allow mail notification" => "Овозможи известување по електронска пошта", -"Allow user to send mail notification for shared files" => "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки", "Security" => "Безбедност", "Enforce HTTPS" => "Наметни HTTPS", "Server address" => "Адреса на сервер", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 244881d306..a43bde76bc 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -97,7 +97,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillat brukere å dele med alle", "Allow users to only share with users in their groups" => "Tillat kun deling med andre brukere i samme gruppe", "Allow mail notification" => "Tillat påminnelser i e-post", -"Allow user to send mail notification for shared files" => "Tillat at brukere sender epost-påminnelser for delte filer", "Security" => "Sikkerhet", "Enforce HTTPS" => "Tving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvinger klientene til å koble til %s via en kryptert forbindelse.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 1f8342df6c..a88725fd5f 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", "Allow mail notification" => "Toestaan e-mailnotificaties", -"Allow user to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 15df48bb31..ff93b7b1be 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "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_BR.php b/settings/l10n/pt_BR.php index bf15e99d42..aae9027ba3 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Allow mail notification" => "Permitir notificação por email", -"Allow user to send mail notification for shared files" => "Permitir usuários enviar notificação por email de arquivos compartilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index ee8a9217f5..e4f34141ab 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -95,7 +95,6 @@ $TRANSLATIONS = array( "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", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 9cbdeee2c2..81bb6f1755 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -95,7 +95,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Разрешить пользователя делать общий доступ любому", "Allow users to only share with users in their groups" => "Разрешить пользователям делать общий доступ только для пользователей их групп", "Allow mail notification" => "Разрешить уведомление по почте", -"Allow user to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах", "Security" => "Безопасность", "Enforce HTTPS" => "Принудить к HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Принудить клиентов подключаться к %s через шифрованное соединение.", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index afe548a1e0..d0143e91cb 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -102,7 +102,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povoliť používateľom zdieľať s kýmkoľvek", "Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách", "Allow mail notification" => "Povoliť odosielať upozornenia emailom", -"Allow user to send mail notification for shared files" => "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory", "Security" => "Zabezpečenie", "Enforce HTTPS" => "Vynútiť HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 017d8a4235..4be0dbc6ee 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -13,6 +13,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Ni mogoče spremeniti polnega imena", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Skupine ni mogoče dodati", +"Files decrypted successfully" => "Datoteke so uspešno odšifrirane", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom.", +"Couldn't decrypt your files, check your password and try again" => "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", "Unable to delete group" => "Skupine ni mogoče izbrisati", @@ -105,7 +108,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", "Allow mail notification" => "Dovoli obvestila preko elektronske pošte", -"Allow user to send mail notification for shared files" => "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vsili povezavo odjemalca z %s preko šifrirane povezave.", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index b5c8794558..0d70fc225f 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillåt delning med alla", "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Allow mail notification" => "Tillåt e-post notifikation", -"Allow user to send mail notification for shared files" => "Tillåt användare att skicka e-port notifikationer för delade filer", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 4fdd08b2c4..89d7f8d2b1 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", -"Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 25943b7020..e83892144f 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "允许用户向任何人共享", "Allow users to only share with users in their groups" => "允许用户只向同组用户共享", "Allow mail notification" => "允许邮件通知", -"Allow user to send mail notification for shared files" => "允许用户为共享的文件发送邮件通知", "Security" => "安全", "Enforce HTTPS" => "强制使用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "强制客户端通过加密连接连接到%s。", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index f7c834c5d8..242b72abc2 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", "Allow mail notification" => "允許郵件通知", -"Allow user to send mail notification for shared files" => "允許使用者分享檔案時寄出通知郵件", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "強迫用戶端使用加密連線連接到 %s", -- GitLab From e0cac32442af1986d2a202ec708fce8d537bb12c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Wed, 23 Apr 2014 10:08:14 +0200 Subject: [PATCH 127/187] fixing some JSHint warnings --- apps/user_ldap/js/ldapFilter.js | 25 +++++++++++++------------ apps/user_ldap/js/settings.js | 10 +++++----- 2 files changed, 18 insertions(+), 17 deletions(-) diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index 0d69164794..df3bd67aec 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -1,3 +1,5 @@ +/* global LdapWizard */ + function LdapFilter(target) { this.locked = true; this.target = false; @@ -49,12 +51,12 @@ LdapFilter.prototype.compose = function() { LdapWizard.detectGroupMemberAssoc(); } }, - function (result) { + function () { console.log('LDAP Wizard: could not compose filter. '+ 'Please check owncloud.log'); } ); -} +}; LdapFilter.prototype.determineMode = function() { var param = 'action=get'+encodeURIComponent(this.target)+'FilterMode'+ @@ -64,13 +66,13 @@ LdapFilter.prototype.determineMode = function() { var filter = this; LdapWizard.ajax(param, function(result) { - property = 'ldap' + filter.target + 'FilterMode'; - filter.mode = parseInt(result.changes[property]); - if(filter.mode === LdapWizard.filterModeRaw - && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + var property = 'ldap' + filter.target + 'FilterMode'; + filter.mode = parseInt(result.changes[property], 10); + if(filter.mode === LdapWizard.filterModeRaw && + $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); - } else if(filter.mode === LdapWizard.filterModeAssisted - && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + } else if(filter.mode === LdapWizard.filterModeAssisted && + !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); } else { console.log('LDAP Wizard determineMode: returned mode was »' + @@ -78,7 +80,7 @@ LdapFilter.prototype.determineMode = function() { } filter.unlock(); }, - function (result) { + function () { //on error case get back to default i.e. Assisted if(!$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); @@ -87,8 +89,7 @@ LdapFilter.prototype.determineMode = function() { filter.unlock(); } ); - -} +}; LdapFilter.prototype.unlock = function() { this.locked = false; @@ -96,4 +97,4 @@ LdapFilter.prototype.unlock = function() { this.lazyRunCompose = false; this.compose(); } -} +}; diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 80e0857239..fca2dc13d1 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -14,7 +14,7 @@ var LdapConfiguration = { //deal with Checkboxes if($(elementID).is('input[type=checkbox]')) { - if(parseInt(configvalue) === 1) { + if(parseInt(configvalue, 10) === 1) { $(elementID).attr('checked', 'checked'); } else { $(elementID).removeAttr('checked'); @@ -478,7 +478,7 @@ var LdapWizard = { }, functionalityCheck: function() { - //criterias to enable the connection: + //criteria to enable the connection: // - host, port, basedn, user filter, login filter host = $('#ldap_host').val(); port = $('#ldap_port').val(); @@ -556,7 +556,7 @@ var LdapWizard = { noneSelectedText: caption, click: function(event, ui) { LdapWizard.saveMultiSelect(id, - $('#'+id).multiselect("getChecked")); + $('#'+id).multiselect("getChecked")); } }); }, @@ -575,8 +575,8 @@ var LdapWizard = { }, postInitUserFilter: function() { - if(LdapWizard.userFilterObjectClassesHasRun - && LdapWizard.userFilterAvailableGroupsHasRun) { + if(LdapWizard.userFilterObjectClassesHasRun && + LdapWizard.userFilterAvailableGroupsHasRun) { LdapWizard.userFilter.compose(); LdapWizard.countUsers(); } -- GitLab From 3d0661a1e79d48ff68a1302126a30e78a9732fa4 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Wed, 23 Apr 2014 12:54:18 +0200 Subject: [PATCH 128/187] Fix error when viewing expired link --- lib/private/files/filesystem.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 7e27650c55..434ee49587 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -374,6 +374,9 @@ class Filesystem { * Returns path like /admin/files */ static public function getRoot() { + if (!self::$defaultInstance) { + return null; + } return self::$defaultInstance->getRoot(); } -- GitLab From cfc52ccc3d3e7e233912adc58bdc95618d941a30 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Fri, 28 Mar 2014 15:24:13 +0100 Subject: [PATCH 129/187] add some action items --- lib/private/share/constants.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/private/share/constants.php b/lib/private/share/constants.php index 7e4223d10f..4c398c43c2 100644 --- a/lib/private/share/constants.php +++ b/lib/private/share/constants.php @@ -26,13 +26,13 @@ class Constants { const SHARE_TYPE_USER = 0; const SHARE_TYPE_GROUP = 1; const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; - const SHARE_TYPE_CONTACT = 5; - const SHARE_TYPE_REMOTE = 6; + const SHARE_TYPE_EMAIL = 4; // ToDo Check if it is still in use otherwise remove it + const SHARE_TYPE_CONTACT = 5; // ToDo Check if it is still in use otherwise remove it + const SHARE_TYPE_REMOTE = 6; // ToDo Check if it is still in use otherwise remove it const FORMAT_NONE = -1; const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; + const FORMAT_SOURCES = -3; // ToDo Check if it is still in use otherwise remove it const TOKEN_LENGTH = 32; // see db_structure.xml -- GitLab From a27db9e4cadb9b5ee26f7b17d3a5997b07639489 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Wed, 2 Apr 2014 12:04:51 +0200 Subject: [PATCH 130/187] first steps to remove the shared folder: - mount shares to the root folder instead of "Shared/" - navigate in shared folder and sub-folders - show previews - show correct file permissions - download/edit files --- apps/files_sharing/lib/cache.php | 46 +++++++-------- apps/files_sharing/lib/share/file.php | 73 +++++++++++++----------- apps/files_sharing/lib/sharedstorage.php | 60 +++++++++++++------ 3 files changed, 106 insertions(+), 73 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index eeb62c3cce..c509ec2457 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -2,8 +2,9 @@ /** * ownCloud * - * @author Michael Gapczynski - * @copyright 2012 Michael Gapczynski mtgap@owncloud.com + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2012 Michael Gapczynski <mtgap@owncloud.com> + * 2014 Bjoern Schiessle <schiessle@owncloud.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -46,7 +47,10 @@ class Shared_Cache extends Cache { * @return \OC\Files\Cache\Cache */ private function getSourceCache($target) { - $source = \OC_Share_Backend_File::getSource($target); + if ($target === false) { + $target = ''; + } + $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); if (isset($source['path']) && isset($source['fileOwner'])) { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); @@ -127,28 +131,24 @@ class Shared_Cache extends Cache { * @return array */ public function getFolderContents($folder) { - if ($folder == '') { - $files = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS); - foreach ($files as &$file) { - $file['mimetype'] = $this->getMimetype($file['mimetype']); - $file['mimepart'] = $this->getMimetype($file['mimepart']); - $file['usersPath'] = 'files/Shared/' . ltrim($file['path'], '/'); - } - return $files; - } else { - $cache = $this->getSourceCache($folder); - if ($cache) { - $parent = $this->storage->getFile($folder); - $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); - foreach ($sourceFolderContent as $key => $c) { - $sourceFolderContent[$key]['usersPath'] = 'files/Shared/' . $folder . '/' . $c['name']; - $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; - $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; - } - return $sourceFolderContent; + if ($folder === false) { + $folder = ''; + } + + $cache = $this->getSourceCache($folder); + if ($cache) { + $parent = $this->storage->getFile($folder); + $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); + foreach ($sourceFolderContent as $key => $c) { + $sourceFolderContent[$key]['usersPath'] = 'files/' . $folder . '/' . $c['name']; + $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; + $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } + + return $sourceFolderContent; } + return false; } @@ -214,7 +214,7 @@ class Shared_Cache extends Cache { */ public function move($source, $target) { if ($cache = $this->getSourceCache($source)) { - $file = \OC_Share_Backend_File::getSource($target); + $file = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); if ($file && isset($file['path'])) { $cache->move($this->files[$source], $file['path']); } diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 5e00050fe1..b5196ab6fa 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -2,8 +2,9 @@ /** * ownCloud * -* @author Michael Gapczynski -* @copyright 2012 Michael Gapczynski mtgap@owncloud.com +* @author Bjoern Schiessle, Michael Gapczynski +* @copyright 2012 Michael Gapczynski <mtgap@owncloud.com> + * 2014 Bjoern Schiessle <schiessle@owncloud.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -146,42 +147,50 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { return array(); } - public static function getSource($target) { - if ($target == '') { - return false; + /** + * @brief resolve reshares to return the correct source item + * @param array $source + * @return array source item + */ + protected static function resolveReshares($source) { + if (isset($source['parent'])) { + $parent = $source['parent']; + while (isset($parent)) { + $query = \OC_DB::prepare('SELECT `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `id` = ?', 1); + $item = $query->execute(array($parent))->fetchRow(); + if (isset($item['parent'])) { + $parent = $item['parent']; + } else { + $fileOwner = $item['uid_owner']; + break; + } + } + } else { + $fileOwner = $source['uid_owner']; } - $target = '/'.$target; - $target = rtrim($target, '/'); - $pos = strpos($target, '/', 1); - // Get shared folder name - if ($pos !== false) { - $folder = substr($target, 0, $pos); - $source = \OCP\Share::getItemSharedWith('folder', $folder, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); - if ($source) { - $source['path'] = $source['path'].substr($target, strlen($folder)); + if (isset($fileOwner)) { + $source['fileOwner'] = $fileOwner; + } else { + \OCP\Util::writeLog('files_sharing', "No owner found for reshare", \OCP\Util::ERROR); + } + + return $source; + } + + public static function getSource($target, $mountPoint, $itemType) { + + if ($itemType === 'folder') { + $source = \OCP\Share::getItemSharedWith('folder', $mountPoint, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); + if ($source && $target !== '') { + $source['path'] = $source['path'].'/'.$target; } } else { - $source = \OCP\Share::getItemSharedWith('file', $target, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); + $source = \OCP\Share::getItemSharedWith('file', $mountPoint, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); } if ($source) { - if (isset($source['parent'])) { - $parent = $source['parent']; - while (isset($parent)) { - $query = \OC_DB::prepare('SELECT `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `id` = ?', 1); - $item = $query->execute(array($parent))->fetchRow(); - if (isset($item['parent'])) { - $parent = $item['parent']; - } else { - $fileOwner = $item['uid_owner']; - break; - } - } - } else { - $fileOwner = $source['uid_owner']; - } - $source['fileOwner'] = $fileOwner; - return $source; + return self::resolveReshares($source); } + \OCP\Util::writeLog('files_sharing', 'File source not found for: '.$target, \OCP\Util::DEBUG); return false; } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index b922654e5e..25a05a0d1f 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -2,8 +2,9 @@ /** * ownCloud * - * @author Michael Gapczynski - * @copyright 2011 Michael Gapczynski mtgap@owncloud.com + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2011 Michael Gapczynski <mtgap@owncloud.com> + * 2014 Bjoern Schiessle <schiessle@owncloud.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -27,15 +28,17 @@ namespace OC\Files\Storage; */ class Shared extends \OC\Files\Storage\Common { - private $sharedFolder; + private $mountPoint; // mount point relative to data/user/files + private $type; // can be "file" or "folder" private $files = array(); public function __construct($arguments) { - $this->sharedFolder = $arguments['sharedFolder']; + $this->mountPoint = $arguments['shareTarget']; + $this->type = $arguments['shareType']; } public function getId() { - return 'shared::' . $this->sharedFolder; + return 'shared::' . $this->mountPoint; } /** @@ -48,14 +51,14 @@ class Shared extends \OC\Files\Storage\Common { if (!isset($this->files[$target])) { // Check for partial files if (pathinfo($target, PATHINFO_EXTENSION) === 'part') { - $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5)); + $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5), $this->getMountPoint(), $this->getShareType()); if ($source) { $source['path'] .= '.part'; // All partial files have delete permission $source['permissions'] |= \OCP\PERMISSION_DELETE; } } else { - $source = \OC_Share_Backend_File::getSource($target); + $source = \OC_Share_Backend_File::getSource($target, $this->getMountPoint(), $this->getShareType()); } $this->files[$target] = $source; } @@ -119,8 +122,8 @@ class Shared extends \OC\Files\Storage\Common { public function opendir($path) { if ($path == '' || $path == '/') { $files = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_Folder::FORMAT_OPENDIR); - \OC\Files\Stream\Dir::register('shared', $files); - return opendir('fakedir://shared'); + \OC\Files\Stream\Dir::register($this->mountPoint, $files); + return opendir('fakedir://' . $this->mountPoint); } else if ($source = $this->getSourcePath($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); return $storage->opendir($internalPath); @@ -180,7 +183,7 @@ class Shared extends \OC\Files\Storage\Common { public function isCreatable($path) { if ($path == '') { - return false; + return ($this->getPermissions($this->getMountPoint()) & \OCP\PERMISSION_CREATE); } return ($this->getPermissions($path) & \OCP\PERMISSION_CREATE); } @@ -246,7 +249,7 @@ class Shared extends \OC\Files\Storage\Common { $source = $this->getSourcePath($path); if ($source) { $info = array( - 'target' => $this->sharedFolder . $path, + 'target' => $this->mountPoint . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info); @@ -264,7 +267,7 @@ class Shared extends \OC\Files\Storage\Common { return false; } $info = array( - 'target' => $this->sharedFolder . $path, + 'target' => $this->mountPoint . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); @@ -343,7 +346,7 @@ class Shared extends \OC\Files\Storage\Common { } } $info = array( - 'target' => $this->sharedFolder . $path, + 'target' => $this->mountPoint . $path, 'source' => $source, 'mode' => $mode, ); @@ -393,16 +396,37 @@ class Shared extends \OC\Files\Storage\Common { } public static function setup($options) { + $shares = \OCP\Share::getItemsSharedWith('file'); if (!\OCP\User::isLoggedIn() || \OCP\User::getUser() != $options['user'] - || \OCP\Share::getItemsSharedWith('file') + || $shares ) { - $user_dir = $options['user_dir']; - \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', - array('sharedFolder' => '/Shared'), - $user_dir . '/Shared/'); + foreach ($shares as $share) { + \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', + array( + 'shareTarget' => $share['file_target'], + 'shareType' => $share['item_type'], + ), + $options['user_dir'] . '/' . $share['file_target']); + } } } + /** + * @brief return mount point of share, relative to data/user/files + * @return string + */ + public function getMountPoint() { + return ltrim($this->mountPoint, '/'); + } + + /** + * @brief return share type, can be "file" or "folder" + * @return string + */ + public function getShareType() { + return $this->type; + } + public function hasUpdated($path, $time) { if ($path == '') { return false; -- GitLab From c377893f0e81dbefe8612fecd90434e47573be29 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Fri, 4 Apr 2014 16:54:02 +0200 Subject: [PATCH 131/187] make sure that we have the right permissions for the mount points --- apps/files_sharing/lib/permissions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/permissions.php b/apps/files_sharing/lib/permissions.php index 31b7ac361a..c3ad63e2fd 100644 --- a/apps/files_sharing/lib/permissions.php +++ b/apps/files_sharing/lib/permissions.php @@ -31,7 +31,9 @@ class Shared_Permissions extends Permissions { */ public function get($fileId, $user) { if ($fileId == -1) { - return \OCP\PERMISSION_READ; + // if we ask for the mount point return -1 so that we can get the correct + // permissions by the path, with the root fileId we have no idea which share is meant + return -1; } $source = \OCP\Share::getItemSharedWithBySource('file', $fileId, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE, null, true); -- GitLab From b02b6d3c236bb015e41447c686acf7167ad037e9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Fri, 4 Apr 2014 17:45:53 +0200 Subject: [PATCH 132/187] no exception for the root of the mount point (formerly Shared/), just get the file cache information from the cache --- apps/files_sharing/lib/cache.php | 11 +---------- apps/files_sharing/lib/share/file.php | 16 ---------------- 2 files changed, 1 insertion(+), 26 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index c509ec2457..becd436f79 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -84,16 +84,7 @@ class Shared_Cache extends Cache { * @return array */ public function get($file) { - if ($file == '') { - $data = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT); - $etag = \OCP\Config::getUserValue(\OCP\User::getUser(), 'files_sharing', 'etag'); - if (!isset($etag)) { - $etag = $this->storage->getETag(''); - \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $etag); - } - $data['etag'] = $etag; - return $data; - } else if (is_string($file)) { + if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { return $cache->get($this->files[$file]); } diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index b5196ab6fa..f9f3211bd8 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -109,22 +109,6 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { $files[] = $file; } return $files; - } else if ($format == self::FORMAT_FILE_APP_ROOT) { - $mtime = 0; - $size = 0; - foreach ($items as $item) { - if ($item['mtime'] > $mtime) { - $mtime = $item['mtime']; - } - $size += (int)$item['size']; - } - return array( - 'fileid' => -1, - 'name' => 'Shared', - 'mtime' => $mtime, - 'mimetype' => 'httpd/unix-directory', - 'size' => $size - ); } else if ($format == self::FORMAT_OPENDIR) { $files = array(); foreach ($items as $item) { -- GitLab From 72bbb9ca20498eba18d6b6a31ed1de2306f90faf Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Mon, 7 Apr 2014 19:00:03 +0200 Subject: [PATCH 133/187] allow to remove and change mount points --- lib/private/files/mount/manager.php | 7 +++++++ lib/private/files/mount/mount.php | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/lib/private/files/mount/manager.php b/lib/private/files/mount/manager.php index ff4a336f34..91460b7273 100644 --- a/lib/private/files/mount/manager.php +++ b/lib/private/files/mount/manager.php @@ -23,6 +23,13 @@ class Manager { $this->mounts[$mount->getMountPoint()] = $mount; } + /** + * @param string $mountPoint + */ + public function removeMount($mountPoint) { + unset($this->mounts[$mountPoint]); + } + /** * Find the mount for $path * diff --git a/lib/private/files/mount/mount.php b/lib/private/files/mount/mount.php index 0ce2f5975c..08d5ddf348 100644 --- a/lib/private/files/mount/mount.php +++ b/lib/private/files/mount/mount.php @@ -65,6 +65,13 @@ class Mount { return $this->mountPoint; } + /** + * @param string $mountPoint new mount point + */ + public function setMountPoint($mountPoint) { + $this->mountPoint = $mountPoint; + } + /** * create the storage that is mounted * -- GitLab From a02fb3722bae6655ffdd5b0e6c522331612c255b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Fri, 4 Apr 2014 18:32:49 +0200 Subject: [PATCH 134/187] user should be able to rename/delete shared files if the owner allowed it --- apps/files_sharing/lib/cache.php | 9 ++ apps/files_sharing/lib/sharedstorage.php | 102 ++++++++++++++++++++++- lib/private/files/view.php | 29 +++++-- 3 files changed, 129 insertions(+), 11 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index becd436f79..4017b7ad64 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -89,6 +89,12 @@ class Shared_Cache extends Cache { return $cache->get($this->files[$file]); } } else { + // if we are at the root of the mount point we want to return the + // cache information for the source item + if (!is_int($file) || $file === 0) { + $file = $this->storage->getSourceId(); + $mountPoint = $this->storage->getMountPoint(); + } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' . ' `size`, `mtime`, `encrypted`, `unencrypted_size`' @@ -110,6 +116,9 @@ class Shared_Cache extends Cache { } else { $data['size'] = (int)$data['size']; } + if (isset($mountPoint)) { + $data['path'] = 'files/' . $mountPoint; + } return $data; } return false; diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 25a05a0d1f..d09a4a2256 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -30,17 +30,33 @@ class Shared extends \OC\Files\Storage\Common { private $mountPoint; // mount point relative to data/user/files private $type; // can be "file" or "folder" + private $shareId; // share Id to identify the share in the database + private $fileSource; // file cache ID of the shared item private $files = array(); public function __construct($arguments) { $this->mountPoint = $arguments['shareTarget']; $this->type = $arguments['shareType']; + $this->shareId = $arguments['shareId']; + $this->fileSource = $arguments['fileSource']; } + /** + * @breif get id of the mount point + * @return string + */ public function getId() { return 'shared::' . $this->mountPoint; } + /** + * @breif get file cache of the shared item source + * @return string + */ + public function getSourceId() { + return $this->fileSource; + } + /** * @brief Get the source file path, permissions, and owner for a shared file * @param string Shared target file path @@ -289,11 +305,89 @@ class Shared extends \OC\Files\Storage\Common { return false; } + /** + * @brief Format a path to be relative to the /user/files/ directory + * @param string $path the absolute path + * @return string e.g. turns '/admin/files/test.txt' into '/test.txt' + */ + private static function stripUserFilesPath($path) { + $trimmed = ltrim($path, '/'); + $split = explode('/', $trimmed); + + // it is not a file relative to data/user/files + if (count($split) < 3 || $split[1] !== 'files') { + \OCP\Util::writeLog('file sharing', + 'Can not strip userid and "files/" from path: ' . $path, + \OCP\Util::DEBUG); + return false; + } + + // skip 'user' and 'files' + $sliced = array_slice($split, 2); + $relPath = implode('/', $sliced); + + return '/' . $relPath; + } + + /** + * @brief rename a shared foder/file + * @param string $sourcePath + * @param string $targetPath + * @return bool + */ + private function renameMountPoint($sourcePath, $targetPath) { + + // it shoulbn't be possible to move a Shared storage into another one + list($targetStorage, ) = \OC\Files\Filesystem::resolvePath($targetPath); + if ($targetStorage instanceof \OC\Files\Storage\Shared) { + \OCP\Util::writeLog('file sharing', + 'It is not allowed to move one mount point into another one', + \OCP\Util::DEBUG); + return false; + } + + $relTargetPath = $this->stripUserFilesPath($targetPath); + + // rename mount point + $query = \OC_DB::prepare( + 'Update `*PREFIX*share` + SET `file_target` = ? + WHERE `id` = ?' + ); + + $result = $query->execute(array($relTargetPath, $this->shareId)); + + if ($result) { + // update the mount manager with the new paths + $mountManager = \OC\Files\Filesystem::getMountManager(); + $mount = $mountManager->find($sourcePath); + $mount->setMountPoint($targetPath . '/'); + $mountManager->addMount($mount); + $mountManager->removeMount($sourcePath . '/'); + + } else { + \OCP\Util::writeLog('file sharing', + 'Could not rename mount point for shared folder "' . $sourcePath . '" to "' . $targetPath . '"', + \OCP\Util::ERROR); + } + + return $result; + } + + public function rename($path1, $path2) { + + $sourceMountPoint = \OC\Files\Filesystem::getMountPoint($path1); + + // if we renamed the mount point we need to adjust the file_target in the + // database + if (strlen($sourceMountPoint) >= strlen($path1)) { + return $this->renameMountPoint($path1, $path2); + } + // Renaming/moving is only allowed within shared folders - $pos1 = strpos($path1, '/', 1); - $pos2 = strpos($path2, '/', 1); - if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) { + $oldSource = $this->getSourcePath($path1); + if ($oldSource) { $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2); // Within the same folder, we only need UPDATE permissions if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) { @@ -405,6 +499,8 @@ class Shared extends \OC\Files\Storage\Common { array( 'shareTarget' => $share['file_target'], 'shareType' => $share['item_type'], + 'shareId' => $share['id'], + 'fileSource' => $share['file_source'], ), $options['user_dir'] . '/' . $share['file_target']); } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 519ed250b1..6d630f978b 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -404,11 +404,21 @@ class View { if ($run) { $mp1 = $this->getMountPoint($path1 . $postFix1); $mp2 = $this->getMountPoint($path2 . $postFix2); + list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); + list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2); + // if source and target are on the same storage we can call the rename operation from the + // storage. If it is a "Shared" file/folder we call always the rename operation of the + // shared storage to handle mount point renaming, etc correctly if ($mp1 == $mp2) { - list($storage, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); - list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2); - if ($storage) { - $result = $storage->rename($internalPath1, $internalPath2); + if ($storage1) { + $result = $storage1->rename($internalPath1, $internalPath2); + \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); + } else { + $result = false; + } + } elseif ($storage1 instanceof \OC\Files\Storage\Shared) { + if ($storage1) { + $result = $storage1->rename($absolutePath1, $absolutePath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; @@ -417,7 +427,6 @@ class View { if ($this->is_dir($path1)) { $result = $this->copy($path1, $path2); if ($result === true) { - list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); $result = $storage1->unlink($internalPath1); } } else { @@ -431,7 +440,6 @@ class View { fclose($target); if ($result !== false) { - list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); $storage1->unlink($internalPath1); } } @@ -972,8 +980,13 @@ class View { $permissions = $subStorage->getPermissions($rootEntry['path']); $subPermissionsCache->set($rootEntry['fileid'], $user, $permissions); } - // do not allow renaming/deleting the mount point - $rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE)); + // do not allow renaming/deleting the mount point if they are not shared files/folders + // for shared files/folders we use the permissions given by the owner + if ($subStorage instanceof \OC\Files\Storage\Shared) { + $rootEntry['permissions'] = $permissions; + } else { + $rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE)); + } //remove any existing entry with the same name foreach ($files as $i => $file) { -- GitLab From 6d87dacad4e7b0d5ef92b92d892a457bdcbd207e Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 8 Apr 2014 11:32:39 +0200 Subject: [PATCH 135/187] fix getMimeType call, we always need to check the source path --- apps/files_sharing/lib/sharedstorage.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index d09a4a2256..3fa2540b60 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -452,9 +452,6 @@ class Shared extends \OC\Files\Storage\Common { } public function getMimeType($path) { - if ($path == '' || $path == '/') { - return 'httpd/unix-directory'; - } if ($source = $this->getSourcePath($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); return $storage->getMimeType($internalPath); -- GitLab From c4e0fb75a4e8c9cb133ce79b6a737b2ba7b161df Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 8 Apr 2014 14:42:15 +0200 Subject: [PATCH 136/187] add api to get shares from a specific user --- lib/private/share/share.php | 16 ++++++++++++++++ lib/public/share.php | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 3751b035bd..ff56b9a48f 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -252,6 +252,22 @@ class Share extends \OC\Share\Constants { $parameters, $limit, $includeCollections); } + /** + * Get the items of item type shared with a user + * @param string Item type + * @param sting user id for which user we want the shares + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemsSharedWithUser($itemType, $user, $format = self::FORMAT_NONE, + $parameters = null, $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, self::$shareTypeUserAndGroups, $user, null, $format, + $parameters, $limit, $includeCollections); + } + /** * Get the item of item type shared with the current user * @param string $itemType diff --git a/lib/public/share.php b/lib/public/share.php index c694314ad0..230a517b5e 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -90,6 +90,22 @@ class Share extends \OC\Share\Constants { return \OC\Share\Share::getItemsSharedWith($itemType, $format, $parameters, $limit, $includeCollections); } + /** + * Get the items of item type shared with a user + * @param string Item type + * @param sting user id for which user we want the shares + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemsSharedWithUser($itemType, $user, $format = self::FORMAT_NONE, + $parameters = null, $limit = -1, $includeCollections = false) { + + return \OC\Share\Share::getItemsSharedWithUser($itemType, $user, $format, $parameters, $limit, $includeCollections); + } + /** * Get the item of item type shared with the current user * @param string $itemType -- GitLab From 6b19482f3e1d97aab63c6c870c53a27d5e5a8524 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 8 Apr 2014 12:29:47 +0200 Subject: [PATCH 137/187] generate unique target name --- apps/files_sharing/lib/share/file.php | 44 ++++++++++++++++++--------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index f9f3211bd8..c628b11589 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -28,6 +28,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { const FORMAT_OPENDIR = 3; const FORMAT_GET_ALL = 4; const FORMAT_PERMISSIONS = 5; + const FORMAT_TARGET_NAMES = 6; private $path; @@ -50,24 +51,31 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { return false; } + /** + * @brief create unique target + * @param string $filePath + * @param string $shareWith + * @param string $exclude + * @return string + */ public function generateTarget($filePath, $shareWith, $exclude = null) { $target = '/'.basename($filePath); - if (isset($exclude)) { - if ($pos = strrpos($target, '.')) { - $name = substr($target, 0, $pos); - $ext = substr($target, $pos); - } else { - $name = $target; - $ext = ''; - } - $i = 2; - $append = ''; - while (in_array($name.$append.$ext, $exclude)) { - $append = ' ('.$i.')'; - $i++; - } - $target = $name.$append.$ext; + \OC\Files\Filesystem::initMountPoints($shareWith); + $view = new \OC\Files\View('/' . $shareWith . '/files'); + $excludeList = \OCP\Share::getItemsSharedWithUser('file', $shareWith, self::FORMAT_TARGET_NAMES); + if (is_array($exclude)) { + $excludeList = array_merge($excludeList, $exclude); } + + $pathinfo = pathinfo($target); + $ext = (isset($pathinfo['extension'])) ? '.'.$pathinfo['extension'] : ''; + $name = $pathinfo['filename']; + $i = 2; + while ($view->file_exists($target) || in_array($target, $excludeList)) { + $target = '/' . $name . ' ('.$i.')' . $ext; + $i++; + } + return $target; } @@ -127,6 +135,12 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { $filePermissions[$item['file_source']] = $item['permissions']; } return $filePermissions; + } else if ($format === self::FORMAT_TARGET_NAMES) { + $targets = array(); + foreach ($items as $item) { + $targets[] = $item['file_target']; + } + return $targets; } return array(); } -- GitLab From 496743523729b69e311c170a810182f95568fb7d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 8 Apr 2014 16:37:34 +0200 Subject: [PATCH 138/187] show "shared by ..." for share mount point --- apps/files_sharing/lib/cache.php | 4 +++- apps/files_sharing/lib/sharedstorage.php | 11 +++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 4017b7ad64..250c1e872e 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -86,7 +86,9 @@ class Shared_Cache extends Cache { public function get($file) { if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { - return $cache->get($this->files[$file]); + $data = $cache->get($this->files[$file]); + $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); + return $data; } } else { // if we are at the root of the mount point we want to return the diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 3fa2540b60..f38f29635a 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -32,6 +32,7 @@ class Shared extends \OC\Files\Storage\Common { private $type; // can be "file" or "folder" private $shareId; // share Id to identify the share in the database private $fileSource; // file cache ID of the shared item + private $sharedFrom; // the user who shared the file private $files = array(); public function __construct($arguments) { @@ -39,6 +40,7 @@ class Shared extends \OC\Files\Storage\Common { $this->type = $arguments['shareType']; $this->shareId = $arguments['shareId']; $this->fileSource = $arguments['fileSource']; + $this->sharedFrom = $arguments['sharedFrom']; } /** @@ -498,6 +500,7 @@ class Shared extends \OC\Files\Storage\Common { 'shareType' => $share['item_type'], 'shareId' => $share['id'], 'fileSource' => $share['file_source'], + 'sharedFrom' => $share['uid_owner'], ), $options['user_dir'] . '/' . $share['file_target']); } @@ -512,6 +515,14 @@ class Shared extends \OC\Files\Storage\Common { return ltrim($this->mountPoint, '/'); } + /** + * @brief get the user who shared the file + * @return string + */ + public function getSharedFrom() { + return $this->sharedFrom; + } + /** * @brief return share type, can be "file" or "folder" * @return string -- GitLab From 83d68107253834aa5322198295c827d94e951e90 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 8 Apr 2014 16:56:10 +0200 Subject: [PATCH 139/187] don't overwrite shared folder icon --- apps/files/lib/helper.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index 2e3741cbdc..88a5ffcfb6 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -37,8 +37,7 @@ class Helper $sid = explode(':', $sid); if ($sid[0] === 'shared') { $icon = \OC_Helper::mimetypeIcon('dir-shared'); - } - if ($sid[0] !== 'local' and $sid[0] !== 'home') { + } elseif ($sid[0] !== 'local' and $sid[0] !== 'home') { $icon = \OC_Helper::mimetypeIcon('dir-external'); } } -- GitLab From 27c5a978f91e7aa447a2acca040fd173baba53b9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 8 Apr 2014 17:17:48 +0200 Subject: [PATCH 140/187] we no longer need to handle the Shared folder different from any other folder --- apps/files/js/file-upload.js | 4 +- apps/files/js/fileactions.js | 8 +-- apps/files/js/filelist.js | 2 +- apps/files/js/files.js | 6 +- apps/files/lib/app.php | 11 +-- apps/files/tests/ajax_rename.php | 82 ---------------------- apps/files/tests/js/filesSpec.js | 35 --------- lib/private/connector/sabre/directory.php | 12 ---- lib/private/connector/sabre/file.php | 11 --- lib/private/connector/sabre/objecttree.php | 3 - 10 files changed, 8 insertions(+), 166 deletions(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 3879aa6588..03ebdccb32 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -235,7 +235,7 @@ OC.Upload = { var file = data.files[0]; try { // FIXME: not so elegant... need to refactor that method to return a value - Files.isFileNameValid(file.name, FileList.getCurrentDirectory()); + Files.isFileNameValid(file.name); } catch (errorMessage) { data.textStatus = 'invalidcharacters'; @@ -555,8 +555,6 @@ OC.Upload = { throw t('files', 'URL cannot be empty'); } else if (type !== 'web' && !Files.isFileNameValid(filename)) { // Files.isFileNameValid(filename) throws an exception itself - } else if (FileList.getCurrentDirectory() === '/' && filename.toLowerCase() === 'shared') { - throw t('files', 'In the home folder \'Shared\' is a reserved filename'); } else if (FileList.inList(filename)) { throw t('files', '{new_name} already exists', {new_name: filename}); } else { diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 631aebea95..ecdfa72a47 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -118,10 +118,6 @@ var FileActions = { }; var addAction = function (name, action, displayName) { - // NOTE: Temporary fix to prevent rename action in root of Shared directory - if (name === 'Rename' && $('#dir').val() === '/Shared') { - return true; - } if ((name === 'Download' || action !== defaultAction) && name !== 'Delete') { @@ -160,7 +156,7 @@ var FileActions = { addAction(name, ah, displayName); } }); - if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){ + if(actions.Share){ displayName = t('files', 'Share'); addAction('Share', actions.Share, displayName); } @@ -223,7 +219,7 @@ $(document).ready(function () { $('#fileList tr').each(function () { FileActions.display($(this).children('td.filename')); }); - + $('#fileList').trigger(jQuery.Event("fileActionsReady")); }); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 9c749bb8f3..343da21741 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -580,7 +580,7 @@ window.FileList = { var filename = input.val(); if (filename !== oldname) { // Files.isFileNameValid(filename) throws an exception itself - Files.isFileNameValid(filename, FileList.getCurrentDirectory()); + Files.isFileNameValid(filename); if (FileList.inList(filename)) { throw t('files', '{new_name} already exists', {new_name: filename}); } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 9f38263bef..5e669a796a 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -87,11 +87,9 @@ var Files = { * Throws a string exception with an error message if * the file name is not valid */ - isFileNameValid: function (name, root) { + isFileNameValid: function (name) { var trimmedName = name.trim(); - if (trimmedName === '.' - || trimmedName === '..' - || (root === '/' && trimmedName.toLowerCase() === 'shared')) + if (trimmedName === '.' || trimmedName === '..') { throw t('files', '"{name}" is an invalid file name.', {name: name}); } else if (trimmedName.length === 0) { diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index adfca66957..ed4aa32c66 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -54,13 +54,8 @@ class App { 'data' => NULL ); - // rename to "/Shared" is denied - if( $dir === '/' and $newname === 'Shared' ) { - $result['data'] = array( - 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved.") - ); // rename to non-existing folder is denied - } else if (!$this->view->file_exists($dir)) { + if (!$this->view->file_exists($dir)) { $result['data'] = array('message' => (string)$this->l10n->t( 'The target folder has been moved or deleted.', array($dir)), @@ -68,7 +63,7 @@ class App { ); // rename to existing file is denied } else if ($this->view->file_exists($dir . '/' . $newname)) { - + $result['data'] = array( 'message' => $this->l10n->t( "The name %s is already used in the folder %s. Please choose a different name.", @@ -77,8 +72,6 @@ class App { } else if ( // rename to "." is denied $newname !== '.' and - // rename of "/Shared" is denied - !($dir === '/' and $oldname === 'Shared') and // THEN try to rename $this->view->rename($dir . '/' . $oldname, $dir . '/' . $newname) ) { diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index cb62d22a7e..74ca1e4495 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -55,88 +55,6 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { \OC\Files\Filesystem::tearDown(); } - /** - * @brief test rename of file/folder named "Shared" - */ - function testRenameSharedFolder() { - $dir = '/'; - $oldname = 'Shared'; - $newname = 'new_name'; - - $this->viewMock->expects($this->at(0)) - ->method('file_exists') - ->with('/') - ->will($this->returnValue(true)); - - $result = $this->files->rename($dir, $oldname, $newname); - $expected = array( - 'success' => false, - 'data' => array('message' => '%s could not be renamed') - ); - - $this->assertEquals($expected, $result); - } - - /** - * @brief test rename of file/folder named "Shared" - */ - function testRenameSharedFolderInSubdirectory() { - $dir = '/test'; - $oldname = 'Shared'; - $newname = 'new_name'; - - $this->viewMock->expects($this->at(0)) - ->method('file_exists') - ->with('/test') - ->will($this->returnValue(true)); - - $this->viewMock->expects($this->any()) - ->method('getFileInfo') - ->will($this->returnValue(new \OC\Files\FileInfo( - '/test', - null, - '/test', - array( - 'fileid' => 123, - 'type' => 'dir', - 'mimetype' => 'httpd/unix-directory', - 'mtime' => 0, - 'permissions' => 31, - 'size' => 18, - 'etag' => 'abcdef', - 'directory' => '/', - 'name' => 'new_name', - )))); - - $result = $this->files->rename($dir, $oldname, $newname); - - $this->assertTrue($result['success']); - $this->assertEquals(123, $result['data']['id']); - $this->assertEquals('new_name', $result['data']['name']); - $this->assertEquals(18, $result['data']['size']); - $this->assertEquals('httpd/unix-directory', $result['data']['mimetype']); - $icon = \OC_Helper::mimetypeIcon('dir'); - $icon = substr($icon, 0, -3) . 'svg'; - $this->assertEquals($icon, $result['data']['icon']); - } - - /** - * @brief test rename of file/folder to "Shared" - */ - function testRenameFolderToShared() { - $dir = '/'; - $oldname = 'oldname'; - $newname = 'Shared'; - - $result = $this->files->rename($dir, $oldname, $newname); - $expected = array( - 'success' => false, - 'data' => array('message' => "Invalid folder name. Usage of 'Shared' is reserved.") - ); - - $this->assertEquals($expected, $result); - } - /** * @brief test rename of file/folder */ diff --git a/apps/files/tests/js/filesSpec.js b/apps/files/tests/js/filesSpec.js index 95bf87e03e..018c8ef0f3 100644 --- a/apps/files/tests/js/filesSpec.js +++ b/apps/files/tests/js/filesSpec.js @@ -48,41 +48,6 @@ describe('Files tests', function() { expect(error).toEqual(false); } }); - it('Validates correct file names do not create Shared folder in root', function() { - // create shared file in subfolder - var error = false; - try { - expect(Files.isFileNameValid('shared', '/foo')).toEqual(true); - expect(Files.isFileNameValid('Shared', '/foo')).toEqual(true); - } - catch (e) { - error = e; - } - expect(error).toEqual(false); - - // create shared file in root - var threwException = false; - try { - Files.isFileNameValid('Shared', '/'); - console.error('Invalid file name not detected'); - } - catch (e) { - threwException = true; - } - expect(threwException).toEqual(true); - - // create shared file in root - var threwException = false; - try { - Files.isFileNameValid('shared', '/'); - console.error('Invalid file name not detected'); - } - catch (e) { - threwException = true; - } - expect(threwException).toEqual(true); - - }); it('Detects invalid file names', function() { var fileNames = [ '', diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 70f45aa1e7..5d386a772a 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -50,10 +50,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createFile($name, $data = null) { - if (strtolower($name) === 'shared' && empty($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'])) { @@ -86,10 +82,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createDirectory($name) { - if (strtolower($name) === 'shared' && empty($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!\OC\Files\Filesystem::isCreatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } @@ -196,10 +188,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function delete() { - if ($this->path === 'Shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!\OC\Files\Filesystem::isDeletable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 750d646a8f..433b4d805c 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -71,13 +71,6 @@ 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 . '.ocTransferId' . rand() . '.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() . '.part'; - } - try { $putOkay = $fs->file_put_contents($partpath, $data); if ($putOkay === false) { @@ -149,10 +142,6 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D public function delete() { $fs = $this->getFS(); - if ($this->path === 'Shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!$fs->isDeletable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index accf020daa..d2fa425b22 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -94,9 +94,6 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { } if ($sourceDir !== $destinationDir) { // for a full move we need update privileges on sourcePath and sourceDir as well as destinationDir - if (ltrim($destinationDir, '/') === '' && strtolower($sourceNode->getName()) === 'shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } if (!$fs->isUpdatable($sourceDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } -- GitLab From ed981294f11bd59733e0d121cbf737e16275b666 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 8 Apr 2014 19:57:07 +0200 Subject: [PATCH 141/187] fix share api tests --- apps/files_sharing/lib/api.php | 12 ---- apps/files_sharing/lib/cache.php | 21 ++++--- apps/files_sharing/lib/share/file.php | 2 +- apps/files_sharing/lib/sharedstorage.php | 39 +++---------- apps/files_sharing/lib/watcher.php | 2 +- apps/files_sharing/tests/api.php | 70 +++++------------------- apps/files_sharing/tests/base.php | 12 ++-- apps/files_sharing/tests/cache.php | 60 +++++++++----------- apps/files_sharing/tests/permissions.php | 15 +++-- apps/files_sharing/tests/watcher.php | 33 ++++------- lib/private/share/share.php | 6 +- 11 files changed, 91 insertions(+), 181 deletions(-) diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index de3c1cd263..438d3cc4ba 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -184,7 +184,6 @@ class Api { $receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']); reset($share); $key = key($share); - $share[$key]['path'] = self::correctPath($share[$key]['path'], $path); if ($receivedFrom) { $share[$key]['received_from'] = $receivedFrom['uid_owner']; $share[$key]['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); @@ -531,15 +530,4 @@ class Api { } - /** - * @brief make sure that the path has the correct root - * - * @param string $path path returned from the share API - * @param string $folder current root folder - * @return string the correct path - */ - protected static function correctPath($path, $folder) { - return \OC_Filesystem::normalizePath('/' . $folder . '/' . basename($path)); - } - } diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 250c1e872e..e91c15cc62 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -47,7 +47,7 @@ class Shared_Cache extends Cache { * @return \OC\Files\Cache\Cache */ private function getSourceCache($target) { - if ($target === false) { + if ($target === false || $target === $this->storage->getMountPoint()) { $target = ''; } $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); @@ -86,8 +86,11 @@ class Shared_Cache extends Cache { public function get($file) { if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { + $path = 'files/' . $this->storage->getMountPoint(); + $path .= ($file !== '') ? '/' . $file : ''; $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); + $data['path'] = $path; return $data; } } else { @@ -99,7 +102,7 @@ class Shared_Cache extends Cache { } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' - . ' `size`, `mtime`, `encrypted`, `unencrypted_size`' + . ' `size`, `mtime`, `encrypted`, `unencrypted_size`, `storage_mtime`' . ' FROM `*PREFIX*filecache` WHERE `fileid` = ?'); $result = $query->execute(array($file)); $data = $result->fetchRow(); @@ -138,12 +141,15 @@ class Shared_Cache extends Cache { $folder = ''; } + $dir = 'files/' . $this->storage->getMountPoint(); + $dir .= ($folder !== '') ? '/' . $folder : ''; + $cache = $this->getSourceCache($folder); if ($cache) { $parent = $this->storage->getFile($folder); $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); foreach ($sourceFolderContent as $key => $c) { - $sourceFolderContent[$key]['usersPath'] = 'files/' . $folder . '/' . $c['name']; + $sourceFolderContent[$key]['path'] = $dir . '/' . $c['name']; $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } @@ -178,7 +184,11 @@ class Shared_Cache extends Cache { * @return int */ public function getId($file) { - if ($cache = $this->getSourceCache($file)) { + if ($file === false) { + return $this->storage->getSourceId(); + } + $cache = $this->getSourceCache($file); + if ($cache) { return $cache->getId($this->files[$file]); } return -1; @@ -292,9 +302,6 @@ class Shared_Cache extends Cache { if ($file['mimetype'] === 'httpd/unix-directory') { $exploreDirs[] = ltrim($dir . '/' . $file['name'], '/'); } else if (($mimepart && $file['mimepart'] === $mimepart) || ($mimetype && $file['mimetype'] === $mimetype)) { - // usersPath not reliable - //$file['path'] = $file['usersPath']; - $file['path'] = ltrim($dir . '/' . $file['name'], '/'); $result[] = $file; } } diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index c628b11589..e1d0b49706 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -87,7 +87,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { 'path' => $items[key($items)]['path'], 'storage' => $items[key($items)]['storage'], 'permissions' => $items[key($items)]['permissions'], - 'uid_owner' => $items[key($items)]['uid_owner'] + 'uid_owner' => $items[key($items)]['uid_owner'], ); } else if ($format == self::FORMAT_GET_FOLDER_CONTENTS) { $files = array(); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index f38f29635a..565c3e7af8 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -138,15 +138,9 @@ class Shared extends \OC\Files\Storage\Common { } public function opendir($path) { - if ($path == '' || $path == '/') { - $files = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_Folder::FORMAT_OPENDIR); - \OC\Files\Stream\Dir::register($this->mountPoint, $files); - return opendir('fakedir://' . $this->mountPoint); - } else if ($source = $this->getSourcePath($path)) { - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); - return $storage->opendir($internalPath); - } - return false; + $source = $this->getSourcePath($path); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); + return $storage->opendir($internalPath); } public function is_dir($path) { @@ -242,25 +236,9 @@ class Shared extends \OC\Files\Storage\Common { } public function filemtime($path) { - if ($path == '' || $path == '/') { - $mtime = 0; - $dh = $this->opendir($path); - if (is_resource($dh)) { - while (($filename = readdir($dh)) !== false) { - $tempmtime = $this->filemtime($filename); - if ($tempmtime > $mtime) { - $mtime = $tempmtime; - } - } - } - return $mtime; - } else { - $source = $this->getSourcePath($path); - if ($source) { - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); - return $storage->filemtime($internalPath); - } - } + $source = $this->getSourcePath($path); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); + return $storage->filemtime($internalPath); } public function file_get_contents($path) { @@ -285,7 +263,7 @@ class Shared extends \OC\Files\Storage\Common { return false; } $info = array( - 'target' => $this->mountPoint . $path, + 'target' => $this->mountPoint . '/' . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); @@ -532,9 +510,6 @@ class Shared extends \OC\Files\Storage\Common { } public function hasUpdated($path, $time) { - if ($path == '') { - return false; - } return $this->filemtime($path) > $time; } diff --git a/apps/files_sharing/lib/watcher.php b/apps/files_sharing/lib/watcher.php index 285b1a58c6..11d3ce1cab 100644 --- a/apps/files_sharing/lib/watcher.php +++ b/apps/files_sharing/lib/watcher.php @@ -32,7 +32,7 @@ class Shared_Watcher extends Watcher { * @param string $path */ public function checkUpdate($path) { - if ($path != '' && parent::checkUpdate($path) === true) { + if (parent::checkUpdate($path) === true) { // since checkUpdate() has already updated the size of the subdirs, // only apply the update to the owner's parent dirs diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index c7a848315a..6354d1099b 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -324,10 +324,10 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); $testValues=array( - array('query' => 'Shared/' . $this->folder, - 'expectedResult' => '/Shared' . $this->folder . $this->filename), - array('query' => 'Shared/' . $this->folder . $this->subfolder, - 'expectedResult' => '/Shared' . $this->folder . $this->subfolder . $this->filename), + array('query' => $this->folder, + 'expectedResult' => $this->folder . $this->filename), + array('query' => $this->folder . $this->subfolder, + 'expectedResult' => $this->folder . $this->subfolder . $this->filename), ); foreach ($testValues as $value) { @@ -382,7 +382,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // share was successful? $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -395,7 +395,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->subfolder; + $expectedPath = $this->subfolder; $this->assertEquals($expectedPath, $data[0]['path']); // cleanup @@ -444,7 +444,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -457,7 +457,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->subsubfolder; + $expectedPath = $this->subsubfolder; $this->assertEquals($expectedPath, $data[0]['path']); @@ -512,8 +512,8 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - // ask for shared/subfolder - $expectedPath1 = '/Shared' . $this->subfolder; + // ask for subfolder + $expectedPath1 = $this->subfolder; $_GET['path'] = $expectedPath1; $result1 = Share\Api::getAllShares(array()); @@ -524,8 +524,8 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $data1 = $result1->getData(); $share1 = reset($data1); - // ask for shared/folder/subfolder - $expectedPath2 = '/Shared' . $this->folder . $this->subfolder; + // ask for folder/subfolder + $expectedPath2 = $this->folder . $this->subfolder; $_GET['path'] = $expectedPath2; $result2 = Share\Api::getAllShares(array()); @@ -595,7 +595,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -608,7 +608,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->filename; + $expectedPath = $this->filename; $this->assertEquals($expectedPath, $data[0]['path']); @@ -868,46 +868,4 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } - function testCorrectPath() { - $path = "/foo/bar/test.txt"; - $folder = "/correct/path"; - $expectedResult = "/correct/path/test.txt"; - - $shareApiDummy = new TestShareApi(); - - $this->assertSame($expectedResult, $shareApiDummy->correctPathTest($path, $folder)); - } - - /** - * @expectedException \Exception - */ - public function testShareNonExisting() { - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - - $id = PHP_INT_MAX - 1; - \OCP\Share::shareItem('file', $id, \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - } - - /** - * @expectedException \Exception - */ - public function testShareNotOwner() { - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); - \OC\Files\Filesystem::file_put_contents('foo.txt', 'bar'); - $info = \OC\Files\Filesystem::getFileInfo('foo.txt'); - - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - - \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - } - -} - -/** - * @brief dumnmy class to test protected methods - */ -class TestShareApi extends \OCA\Files\Share\Api { - public function correctPathTest($path, $folder) { - return self::correctPath($path, $folder); - } } diff --git a/apps/files_sharing/tests/base.php b/apps/files_sharing/tests/base.php index d44972d01f..495dca072c 100644 --- a/apps/files_sharing/tests/base.php +++ b/apps/files_sharing/tests/base.php @@ -102,22 +102,20 @@ abstract class Test_Files_Sharing_Base extends \PHPUnit_Framework_TestCase { * @param bool $password */ protected static function loginHelper($user, $create = false, $password = false) { - if ($create) { - \OC_User::createUser($user, $user); - } if ($password === false) { $password = $user; } + if ($create) { + \OC_User::createUser($user, $password); + } + \OC_Util::tearDownFS(); \OC_User::setUserId(''); \OC\Files\Filesystem::tearDown(); - \OC_Util::setupFS($user); \OC_User::setUserId($user); - - $params['uid'] = $user; - $params['password'] = $password; + \OC_Util::setupFS($user); } /** diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index 47969833ab..7a52f403d8 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -68,7 +68,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { // retrieve the shared storage $secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/shareddir'); $this->sharedCache = $this->sharedStorage->getCache(); } @@ -98,46 +98,46 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { function testSearchByMime() { $results = $this->sharedStorage->getCache()->searchByMime('text'); $check = array( - array( - 'name' => 'shared single file.txt', - 'path' => 'shared single file.txt' - ), array( 'name' => 'bar.txt', - 'path' => 'shareddir/bar.txt' + 'path' => 'files/shareddir/bar.txt' ), array( 'name' => 'another too.txt', - 'path' => 'shareddir/subdir/another too.txt' + 'path' => 'files/shareddir/subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'shareddir/subdir/another.txt' + 'path' => 'files/shareddir/subdir/another.txt' ), ); $this->verifyFiles($check, $results); - $results2 = $this->sharedStorage->getCache()->searchByMime('text/plain'); - $this->verifyFiles($check, $results); } function testGetFolderContentsInRoot() { - $results = $this->user2View->getDirectoryContent('/Shared/'); + $results = $this->user2View->getDirectoryContent('/'); + // we should get the shared items "shareddir" and "shared single file.txt" + // additional root will always contain the example file "welcome.txt", + // so this will be part of the result $this->verifyFiles( array( + array( + 'name' => 'welcome.txt', + 'path' => 'files/welcome.txt', + 'mimetype' => 'text/plain', + ), array( 'name' => 'shareddir', - 'path' => '/shareddir', + 'path' => 'files/shareddir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir' ), array( 'name' => 'shared single file.txt', - 'path' => '/shared single file.txt', + 'path' => 'files/shared single file.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/shared single file.txt' ), ), $results @@ -145,27 +145,24 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { } function testGetFolderContentsInSubdir() { - $results = $this->user2View->getDirectoryContent('/Shared/shareddir'); + $results = $this->user2View->getDirectoryContent('/shareddir'); $this->verifyFiles( array( array( 'name' => 'bar.txt', - 'path' => 'files/container/shareddir/bar.txt', + 'path' => 'files/shareddir/bar.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/shareddir/bar.txt' ), array( 'name' => 'emptydir', - 'path' => 'files/container/shareddir/emptydir', + 'path' => 'files/shareddir/emptydir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir/emptydir' ), array( 'name' => 'subdir', - 'path' => 'files/container/shareddir/subdir', + 'path' => 'files/shareddir/subdir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir/subdir' ), ), $results @@ -182,27 +179,24 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { self::loginHelper(self::TEST_FILES_SHARING_API_USER3); $thirdView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER3 . '/files'); - $results = $thirdView->getDirectoryContent('/Shared/subdir'); + $results = $thirdView->getDirectoryContent('/subdir'); $this->verifyFiles( array( array( 'name' => 'another too.txt', - 'path' => 'files/container/shareddir/subdir/another too.txt', + 'path' => 'files/subdir/another too.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'files/container/shareddir/subdir/another.txt', + 'path' => 'files/subdir/another.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/subdir/another.txt' ), array( 'name' => 'not a text file.xml', - 'path' => 'files/container/shareddir/subdir/not a text file.xml', + 'path' => 'files/subdir/not a text file.xml', 'mimetype' => 'application/xml', - 'usersPath' => 'files/Shared/subdir/not a text file.xml' ), ), $results @@ -254,8 +248,8 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { \OC_Util::tearDownFS(); self::loginHelper(self::TEST_FILES_SHARING_API_USER2); - $this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/test.txt')); - list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/test.txt'); + $this->assertTrue(\OC\Files\Filesystem::file_exists('/test.txt')); + list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/test.txt'); /** * @var \OC\Files\Storage\Shared $sharedStorage */ @@ -275,8 +269,8 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { \OC_Util::tearDownFS(); self::loginHelper(self::TEST_FILES_SHARING_API_USER2); - $this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/foo')); - list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/foo'); + $this->assertTrue(\OC\Files\Filesystem::file_exists('/foo')); + list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/foo'); /** * @var \OC\Files\Storage\Shared $sharedStorage */ diff --git a/apps/files_sharing/tests/permissions.php b/apps/files_sharing/tests/permissions.php index e301d384a4..5ac251b052 100644 --- a/apps/files_sharing/tests/permissions.php +++ b/apps/files_sharing/tests/permissions.php @@ -23,6 +23,9 @@ require_once __DIR__ . '/base.php'; class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { + private $sharedStorageRestrictedShare; + private $sharedCacheRestrictedShare; + function setUp() { parent::setUp(); @@ -55,8 +58,10 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { // retrieve the shared storage $this->secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $this->secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $this->secondView->resolvePath('files/shareddir'); + list($this->sharedStorageRestrictedShare, $internalPath) = $this->secondView->resolvePath('files/shareddirrestricted'); $this->sharedCache = $this->sharedStorage->getCache(); + $this->sharedCacheRestrictedShare = $this->sharedStorageRestrictedShare->getCache(); } function tearDown() { @@ -86,9 +91,9 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { $this->assertEquals(31, $sharedDirPerms); $sharedDirPerms = $this->sharedStorage->getPermissions('shareddir/textfile.txt'); $this->assertEquals(31, $sharedDirPerms); - $sharedDirRestrictedPerms = $this->sharedStorage->getPermissions('shareddirrestricted'); + $sharedDirRestrictedPerms = $this->sharedStorageRestrictedShare->getPermissions('shareddirrestricted'); $this->assertEquals(7, $sharedDirRestrictedPerms); - $sharedDirRestrictedPerms = $this->sharedStorage->getPermissions('shareddirrestricted/textfile.txt'); + $sharedDirRestrictedPerms = $this->sharedStorageRestrictedShare->getPermissions('shareddirrestricted/textfile.txt'); $this->assertEquals(7, $sharedDirRestrictedPerms); } @@ -96,12 +101,12 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { * Test that the permissions of shared directory are returned correctly */ function testGetDirectoryPermissions() { - $contents = $this->secondView->getDirectoryContent('files/Shared/shareddir'); + $contents = $this->secondView->getDirectoryContent('files/shareddir'); $this->assertEquals('subdir', $contents[0]['name']); $this->assertEquals(31, $contents[0]['permissions']); $this->assertEquals('textfile.txt', $contents[1]['name']); $this->assertEquals(31, $contents[1]['permissions']); - $contents = $this->secondView->getDirectoryContent('files/Shared/shareddirrestricted'); + $contents = $this->secondView->getDirectoryContent('files/shareddirrestricted'); $this->assertEquals('subdir', $contents[0]['name']); $this->assertEquals(7, $contents[0]['permissions']); $this->assertEquals('textfile1.txt', $contents[1]['name']); diff --git a/apps/files_sharing/tests/watcher.php b/apps/files_sharing/tests/watcher.php index 5ab716e829..bce93c80a6 100644 --- a/apps/files_sharing/tests/watcher.php +++ b/apps/files_sharing/tests/watcher.php @@ -48,7 +48,7 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { // retrieve the shared storage $secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/shareddir'); $this->sharedCache = $this->sharedStorage->getCache(); } @@ -77,12 +77,12 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $textData = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $dataLen = strlen($textData); - $this->sharedCache->put('shareddir/bar.txt', array('storage_mtime' => 10)); - $this->sharedStorage->file_put_contents('shareddir/bar.txt', $textData); - $this->sharedCache->put('shareddir', array('storage_mtime' => 10)); + $this->sharedCache->put('bar.txt', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); + $this->sharedStorage->file_put_contents('bar.txt', $textData); + $this->sharedCache->put('', array('mtime' => 10, 'storage_mtime' => 10, 'size' => '-1', 'mimetype' => 'httpd/unix-directory')); // run the propagation code - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate(''); $this->assertTrue($result); @@ -94,7 +94,7 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $this->assertEquals($initialSizes['files/container/shareddir'] + $dataLen, $newSizes['files/container/shareddir']); // no more updates - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate(''); $this->assertFalse($result); } @@ -108,12 +108,12 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $textData = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $dataLen = strlen($textData); - $this->sharedCache->put('shareddir/subdir/bar.txt', array('storage_mtime' => 10)); - $this->sharedStorage->file_put_contents('shareddir/subdir/bar.txt', $textData); - $this->sharedCache->put('shareddir/subdir', array('storage_mtime' => 10)); + $this->sharedCache->put('subdir/bar.txt', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); + $this->sharedStorage->file_put_contents('subdir/bar.txt', $textData); + $this->sharedCache->put('subdir', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); // run the propagation code - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir/subdir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate('subdir'); $this->assertTrue($result); @@ -126,20 +126,9 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $this->assertEquals($initialSizes['files/container/shareddir/subdir'] + $dataLen, $newSizes['files/container/shareddir/subdir']); // no more updates - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir/subdir'); - - $this->assertFalse($result); - } - - function testNoUpdateOnRoot() { - // no updates when called for root path - $result = $this->sharedStorage->getWatcher()->checkUpdate(''); + $result = $this->sharedStorage->getWatcher()->checkUpdate('subdir'); $this->assertFalse($result); - - // FIXME: for some reason when running this "naked" test, - // there will be remaining nonsensical entries in the - // database with a path "test-share-user1/container/..." } /** diff --git a/lib/private/share/share.php b/lib/private/share/share.php index ff56b9a48f..24e2a15064 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1177,10 +1177,6 @@ class Share extends \OC\Share\Constants { // Remove root from file source paths if retrieving own shared items if (isset($uidOwner) && isset($row['path'])) { if (isset($row['parent'])) { - // FIXME: Doesn't always construct the correct path, example: - // Folder '/a/b', share '/a' and '/a/b' to user2 - // user2 reshares /Shared/b and ask for share status of /Shared/a/b - // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); if (\OC_DB::isError($result)) { @@ -1189,7 +1185,7 @@ class Share extends \OC\Share\Constants { \OC_Log::ERROR); } else { $parentRow = $parentResult->fetchRow(); - $tmpPath = '/Shared' . $parentRow['file_target']; + $tmpPath = $parentRow['file_target']; // find the right position where the row path continues from the target path $pos = strrpos($row['path'], $parentRow['file_target']); $subPath = substr($row['path'], $pos); -- GitLab From 4c840cb61d560ae567e3e9aaa7bd411cac917e48 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Wed, 9 Apr 2014 17:51:54 +0200 Subject: [PATCH 142/187] fix target generation for group shares --- lib/private/share/share.php | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 24e2a15064..7af68d1b25 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1395,8 +1395,8 @@ class Share extends \OC\Share\Constants { } } $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' - .' `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' - .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + .' `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`, `token`, `parent`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); // Share with a group if ($shareType == self::SHARE_TYPE_GROUP) { $groupItemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], @@ -1440,10 +1440,9 @@ class Share extends \OC\Share\Constants { } else { $groupFileTarget = null; } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, - $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); - // Save this id, any extra rows for this group share will need to reference it - $parent = \OC_DB::insertid('*PREFIX*share'); + $queriesToExecute = array(); + $queriesToExecute['groupShare'] = array($itemType, $itemSource, $groupItemTarget, $shareType, + $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token, $parent); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { $itemTarget = Helper::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, @@ -1469,12 +1468,21 @@ class Share extends \OC\Share\Constants { } // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, + $queriesToExecute[] = array($itemType, $itemSource, $itemTarget, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), - $fileSource, $fileTarget, $token)); + $fileSource, $fileTarget, $token); $id = \OC_DB::insertid('*PREFIX*share'); } } + $query->execute($queriesToExecute['groupShare']); + // Save this id, any extra rows for this group share will need to reference it + $parent = \OC_DB::insertid('*PREFIX*share'); + unset($queriesToExecute['groupShare']); + foreach ($queriesToExecute as $qe) { + $qe[] = $parent; + $query->execute($qe); + } + \OC_Hook::emit('OCP\Share', 'post_shared', array( 'itemType' => $itemType, 'itemSource' => $itemSource, @@ -1534,8 +1542,8 @@ class Share extends \OC\Share\Constants { } else { $fileTarget = null; } - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, - $permissions, time(), $fileSource, $fileTarget, $token)); + $query->execute(array($itemType, $itemSource, $itemTarget, $shareType, $shareWith, $uidOwner, + $permissions, time(), $fileSource, $fileTarget, $token, $parent)); $id = \OC_DB::insertid('*PREFIX*share'); \OC_Hook::emit('OCP\Share', 'post_shared', array( 'itemType' => $itemType, -- GitLab From a86d97295e4e0e1560bcd4cce4bde21aa60a2486 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Wed, 9 Apr 2014 17:52:24 +0200 Subject: [PATCH 143/187] fix encryption tests after the removal of the shared folder --- apps/files_encryption/hooks/hooks.php | 22 +++++----- apps/files_encryption/lib/util.php | 5 +-- apps/files_encryption/tests/hooks.php | 26 ++++-------- apps/files_encryption/tests/share.php | 51 ++++++++++++------------ apps/files_encryption/tests/util.php | 2 +- apps/files_sharing/lib/share/file.php | 6 +++ apps/files_sharing/lib/sharedstorage.php | 14 +++---- 7 files changed, 59 insertions(+), 67 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 0b6c5adf3f..7a8b54e2d7 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -342,9 +342,7 @@ class Hooks { // if parent has the same type than the child it is a 1:1 share if ($parent['item_type'] === $params['itemType']) { - - // prefix path with Shared - $path = '/Shared' . $parent['file_target']; + $path = $parent['file_target']; } else { // NOTE: parent is folder but shared was a file! @@ -376,11 +374,9 @@ class Hooks { break; } } - // prefix path with Shared - $path = '/Shared' . $parent['file_target'] . $path; + $path = $parent['file_target'] . $path; } else { - // prefix path with Shared - $path = '/Shared' . $parent['file_target'] . $params['fileTarget']; + $path = $parent['file_target'] . $params['fileTarget']; } } } @@ -388,7 +384,8 @@ class Hooks { $sharingEnabled = \OCP\Share::isEnabled(); // get the path including mount point only if not a shared folder - if (strncmp($path, '/Shared', strlen('/Shared') !== 0)) { + list($storage, ) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/files' . $path); + if (!($storage instanceof \OC\Files\Storage\Shared)) { // get path including the the storage mount point $path = $util->getPathWithMountPoint($params['itemSource']); } @@ -454,7 +451,7 @@ class Hooks { } // prefix path with Shared - $path = '/Shared' . $parent['file_target'] . $path; + $path = $parent['file_target'] . $path; } // for group shares get a list of the group members @@ -469,9 +466,10 @@ class Hooks { } // get the path including mount point only if not a shared folder - if (strncmp($path, '/Shared', strlen('/Shared') !== 0)) { + list($storage, ) = \OC\Files\Filesystem::resolvePath($path); + if (!($storage instanceof \OC\Files\Storage\Shared)) { // get path including the the storage mount point - $path = $util->getPathWithMountPoint($params['itemSource']); + //$path = $util->getPathWithMountPoint($params['itemSource']); } // if we unshare a folder we need a list of all (sub-)files @@ -510,6 +508,8 @@ class Hooks { // otherwise we perform a stream copy, so we get a new set of keys $mp1 = $view->getMountPoint('/' . $user . '/files/' . $params['oldpath']); $mp2 = $view->getMountPoint('/' . $user . '/files/' . $params['newpath']); + list($storage1, ) = Filesystem::resolvePath($params['oldpath']); + if ($mp1 === $mp2) { self::$renamedFiles[$params['oldpath']] = array( 'uid' => $ownerOld, diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index b86815021a..4be4ab9565 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1408,11 +1408,10 @@ class Util { $this->userFilesDir . '/' . $dir)); foreach ($content as $c) { - $usersPath = isset($c['usersPath']) ? $c['usersPath'] : $c['path']; if ($c['type'] === 'dir') { - $dirList[] = substr($usersPath, strlen("files")); + $dirList[] = substr($c['path'], strlen("files")); } else { - $result[] = substr($usersPath, strlen("files")); + $result[] = substr($c['path'], strlen("files")); } } diff --git a/apps/files_encryption/tests/hooks.php b/apps/files_encryption/tests/hooks.php index d0e4b5f732..047084ca2c 100644 --- a/apps/files_encryption/tests/hooks.php +++ b/apps/files_encryption/tests/hooks.php @@ -219,18 +219,20 @@ class Test_Encryption_Hooks extends \PHPUnit_Framework_TestCase { \Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2); \OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2); - // user2 has a local file with the same name + // user2 update the shared file $this->user2View->file_put_contents($this->filename, $this->data); - // check if all keys are generated - $this->assertTrue($this->rootView->file_exists( + // keys should be stored at user1s dir, not in user2s + $this->assertFalse($this->rootView->file_exists( self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/share-keys/' . $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey')); - $this->assertTrue($this->rootView->file_exists( + $this->assertFalse($this->rootView->file_exists( self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/keyfiles/' . $this->filename . '.key')); // delete the Shared file from user1 in data/user2/files/Shared - $this->user2View->unlink('/Shared/' . $this->filename); + $result = $this->user2View->unlink($this->filename); + + $this->assertTrue($result); // now keys from user1s home should be gone $this->assertFalse($this->rootView->file_exists( @@ -242,26 +244,12 @@ class Test_Encryption_Hooks extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->rootView->file_exists( self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/' . $this->filename . '.key')); - // but user2 keys should still exist - $this->assertTrue($this->rootView->file_exists( - self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/share-keys/' - . $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey')); - $this->assertTrue($this->rootView->file_exists( - self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/keyfiles/' . $this->filename . '.key')); - // cleanup - $this->user2View->unlink($this->filename); - \Test_Encryption_Util::logoutHelper(); \Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1); \OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1); - // unshare the file - \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, self::TEST_ENCRYPTION_HOOKS_USER2); - - $this->user1View->unlink($this->filename); - if ($stateFilesTrashbin) { OC_App::enable('files_trashbin'); } diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 1f57d7cb63..512671c576 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -175,7 +175,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); // check if data is the same as we previously written $this->assertEquals($this->dataShort, $retrievedCryptedFile); @@ -213,14 +213,14 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { function testReShareFile($withTeardown = true) { $this->testShareFile(false); - // login as user1 + // login as user2 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2); // get the file info $fileInfo = $this->view->getFileInfo( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); - // share the file with user2 + // share the file with user3 \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3, OCP\PERMISSION_ALL); // login as admin @@ -236,7 +236,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/' . $this->filename); // check if data is the same as previously written $this->assertEquals($this->dataShort, $retrievedCryptedFile); @@ -333,7 +333,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared' . $this->folder1 + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1 . $this->subfolder . $this->subsubfolder . '/' . $this->filename); // check if data is the same @@ -376,7 +376,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { function testReShareFolder($withTeardown = true) { $fileInfoFolder1 = $this->testShareFolder(false); - // login as user1 + // login as user2 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2); // disable encryption proxy to prevent recursive calls @@ -385,7 +385,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get the file info from previous created folder $fileInfoSubFolder = $this->view->getFileInfo( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared' . $this->folder1 + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1 . $this->subfolder); // check if we have a valid file info @@ -394,24 +394,24 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // re-enable the file proxy \OC_FileProxy::$enabled = $proxyStatus; - // share the file with user2 + // share the file with user3 \OCP\Share::shareItem('folder', $fileInfoSubFolder['fileid'], \OCP\Share::SHARE_TYPE_USER, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3, OCP\PERMISSION_ALL); // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); - // check if share key for user2 exists + // check if share key for user3 exists $this->assertTrue($this->view->file_exists( '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files_encryption/share-keys' . $this->folder1 . $this->subfolder . $this->subsubfolder . '/' . $this->filename . '.' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '.shareKey')); - // login as user2 + // login as user3 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3); // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/Shared' . $this->subfolder + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/' . $this->subfolder . $this->subsubfolder . '/' . $this->filename); // check if data is the same @@ -419,7 +419,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get the file info $fileInfo = $this->view->getFileInfo( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/Shared' . $this->subfolder + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/' . $this->subfolder . $this->subsubfolder . '/' . $this->filename); // check if we have fileInfos @@ -442,7 +442,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER4 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER4 . '/files/' . $this->filename); // check if data is the same $this->assertEquals($this->dataShort, $retrievedCryptedFile); @@ -624,7 +624,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/' . $this->filename); // check if data is the same as we previously written $this->assertEquals($this->dataShort, $retrievedCryptedFile); @@ -676,6 +676,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // enable recovery for admin $this->assertTrue($util->setRecoveryForUser(1)); + $util->addRecoveryKeys(); // create folder structure $this->view->mkdir('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files' . $this->folder1); @@ -981,7 +982,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // share the file \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, OCP\PERMISSION_ALL); - // check if share key for user2exists + // check if share key for user2 exists $this->assertTrue($this->view->file_exists( '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files_encryption/share-keys/' . $this->filename . '.' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '.shareKey')); @@ -990,31 +991,29 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // login as user2 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2); - $this->assertTrue($this->view->file_exists('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename)); + $this->assertTrue($this->view->file_exists('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename)); // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); // check if data is the same as we previously written $this->assertEquals($this->dataShort, $retrievedCryptedFile); - // move the file out of the shared folder - $this->view->rename('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename, - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); + // move the file to a subfolder + $this->view->rename('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename, + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1 . $this->filename); // check if we can read the moved file $retrievedRenamedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1 . $this->filename); // check if data is the same as we previously written $this->assertEquals($this->dataShort, $retrievedRenamedFile); - // the owners file should be deleted - $this->assertFalse($this->view->file_exists('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files/' . $this->filename)); - // cleanup - $this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); + \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); + $this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files/' . $this->filename); } } diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index 203ba55dbf..717b66b86a 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -520,8 +520,8 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { \OC_Util::tearDownFS(); \OC_User::setUserId(''); \OC\Files\Filesystem::tearDown(); - \OC_Util::setupFS($user); \OC_User::setUserId($user); + \OC_Util::setupFS($user); $params['uid'] = $user; $params['password'] = $password; diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index e1d0b49706..c0c9e0c107 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -60,6 +60,12 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { */ public function generateTarget($filePath, $shareWith, $exclude = null) { $target = '/'.basename($filePath); + + // for group shares we return the target right away + if ($shareWith === false) { + return $target; + } + \OC\Files\Filesystem::initMountPoints($shareWith); $view = new \OC\Files\View('/' . $shareWith . '/files'); $excludeList = \OCP\Share::getItemsSharedWithUser('file', $shareWith, self::FORMAT_TARGET_NAMES); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 565c3e7af8..c90f6d71f7 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -195,7 +195,7 @@ class Shared extends \OC\Files\Storage\Common { public function isCreatable($path) { if ($path == '') { - return ($this->getPermissions($this->getMountPoint()) & \OCP\PERMISSION_CREATE); + $path = $this->mountPoint; } return ($this->getPermissions($path) & \OCP\PERMISSION_CREATE); } @@ -206,21 +206,21 @@ class Shared extends \OC\Files\Storage\Common { public function isUpdatable($path) { if ($path == '') { - return false; + $path = $this->mountPoint; } return ($this->getPermissions($path) & \OCP\PERMISSION_UPDATE); } public function isDeletable($path) { if ($path == '') { - return true; + $path = $this->mountPoint; } return ($this->getPermissions($path) & \OCP\PERMISSION_DELETE); } public function isSharable($path) { if ($path == '') { - return false; + $path = $this->mountPoint; } return ($this->getPermissions($path) & \OCP\PERMISSION_SHARE); } @@ -441,7 +441,7 @@ class Shared extends \OC\Files\Storage\Common { public function free_space($path) { if ($path == '') { - return \OC\Files\SPACE_UNKNOWN; + $path = $this->mountPoint; } $source = $this->getSourcePath($path); if ($source) { @@ -531,7 +531,7 @@ class Shared extends \OC\Files\Storage\Common { public function getOwner($path) { if ($path == '') { - return false; + $path = $this->mountPoint; } $source = $this->getFile($path); if ($source) { @@ -542,7 +542,7 @@ class Shared extends \OC\Files\Storage\Common { public function getETag($path) { if ($path == '') { - return parent::getETag($path); + $path = $this->mountPoint; } if ($source = $this->getSourcePath($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); -- GitLab From bfabd247f42f306720d154c3a84285afed589033 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Wed, 9 Apr 2014 18:00:00 +0200 Subject: [PATCH 144/187] fix updating of shared files --- apps/files_sharing/lib/sharedstorage.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index c90f6d71f7..39d0140008 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -144,13 +144,9 @@ class Shared extends \OC\Files\Storage\Common { } public function is_dir($path) { - if ($path == '' || $path == '/') { - return true; - } else if ($source = $this->getSourcePath($path)) { - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); - return $storage->is_dir($internalPath); - } - return false; + $source = $this->getSourcePath($path); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); + return $storage->is_dir($internalPath); } public function is_file($path) { -- GitLab From 33cdd938904d92607db56c1f3993b74b14ce9bf3 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Thu, 10 Apr 2014 09:54:29 +0200 Subject: [PATCH 145/187] fix deleting of shared files --- apps/files_sharing/lib/sharedstorage.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 39d0140008..3a31e96554 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -272,6 +272,9 @@ class Shared extends \OC\Files\Storage\Common { public function unlink($path) { // Delete the file if DELETE permission is granted + if ($path == '') { + $path = $this->mountPoint; + } if ($source = $this->getSourcePath($path)) { if ($this->isDeletable($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); -- GitLab From d4085d81485c3d973faf4211e11af1c1853e619c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Fri, 11 Apr 2014 11:18:50 +0200 Subject: [PATCH 146/187] make sure that path is not 'false' --- apps/files_sharing/lib/cache.php | 6 +++--- apps/files_sharing/lib/sharedstorage.php | 4 +--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index e91c15cc62..11f180bf7e 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -169,9 +169,8 @@ class Shared_Cache extends Cache { * @return int file id */ public function put($file, array $data) { - if ($file === '' && isset($data['etag'])) { - return \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $data['etag']); - } else if ($cache = $this->getSourceCache($file)) { + $file = ($file === false) ? '' : $file; + if ($cache = $this->getSourceCache($file)) { return $cache->put($this->files[$file], $data); } return false; @@ -368,6 +367,7 @@ class Shared_Cache extends Cache { * @return int */ public function calculateFolderSize($path, $entry = null) { + $path = ($path === false) ? '' : $path; if ($cache = $this->getSourceCache($path)) { return $cache->calculateFolderSize($this->files[$path]); } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 3a31e96554..8254f0e05c 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -272,9 +272,7 @@ class Shared extends \OC\Files\Storage\Common { public function unlink($path) { // Delete the file if DELETE permission is granted - if ($path == '') { - $path = $this->mountPoint; - } + $path = ($path === false) ? '' : $path; if ($source = $this->getSourcePath($path)) { if ($this->isDeletable($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); -- GitLab From dfb69e9418704d8553193676f3a2ae85697c0fa9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Fri, 11 Apr 2014 11:40:14 +0200 Subject: [PATCH 147/187] allow user to delete shared files/folders --- lib/private/files/view.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 6d630f978b..3f73632be1 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -348,7 +348,8 @@ class View { $postFix = (substr($path, -1, 1) === '/') ? '/' : ''; $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path)); list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix); - if (!$internalPath || $internalPath === '' || $internalPath === '/') { + if (!($storage instanceof \OC\Files\Storage\Shared) && + (!$internalPath || $internalPath === '' || $internalPath === '/')) { // do not allow deleting the storage's root / the mount point // because for some storages it might delete the whole contents // but isn't supposed to work that way -- GitLab From c9bd2f7a6c1e72a2ed6d7aa5f180e2c0757ac24c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Fri, 11 Apr 2014 11:54:14 +0200 Subject: [PATCH 148/187] also fetch the etag from file cache --- apps/files_sharing/lib/cache.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 11f180bf7e..bce22a74ba 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -102,7 +102,7 @@ class Shared_Cache extends Cache { } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' - . ' `size`, `mtime`, `encrypted`, `unencrypted_size`, `storage_mtime`' + . ' `size`, `mtime`, `encrypted`, `unencrypted_size`, `storage_mtime`, `etag`' . ' FROM `*PREFIX*filecache` WHERE `fileid` = ?'); $result = $query->execute(array($file)); $data = $result->fetchRow(); @@ -212,6 +212,7 @@ class Shared_Cache extends Cache { * @param string $file */ public function remove($file) { + $file = ($file === false) ? '' : $file; if ($cache = $this->getSourceCache($file)) { $cache->remove($this->files[$file]); } -- GitLab From 22e0a4b9a8835df4bfc88b478e694b0983cb1060 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Mon, 14 Apr 2014 10:15:43 +0200 Subject: [PATCH 149/187] external storages: allow to mount a folder called "Shared", it is no longer a reserved name --- apps/files_external/lib/config.php | 4 ++-- apps/files_external/tests/mountconfig.php | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 71f6ae7887..99eca2f38c 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -373,8 +373,8 @@ class OC_Mount_Config { $isPersonal = false) { $backends = self::getBackends(); $mountPoint = OC\Files\Filesystem::normalizePath($mountPoint); - if ($mountPoint === '' || $mountPoint === '/' || $mountPoint == '/Shared') { - // can't mount at root or "Shared" folder + if ($mountPoint === '' || $mountPoint === '/') { + // can't mount at root folder return false; } diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index c89874c94d..1921ec76af 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -128,9 +128,6 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $isPersonal = false; $this->assertFalse(OC_Mount_Config::addMountPoint('', $storageClass, array(), $mountType, $applicable, $isPersonal)); $this->assertFalse(OC_Mount_Config::addMountPoint('/', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertFalse(OC_Mount_Config::addMountPoint('Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertFalse(OC_Mount_Config::addMountPoint('/Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); - } /** @@ -488,7 +485,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { 'root' => 'someroot' ); - // add mount point as "test" user + // add mount point as "test" user $this->assertTrue( OC_Mount_Config::addMountPoint( '/ext', -- GitLab From 3f6e9e01026031527cd80f1f608d7a98d93e7ebe Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Mon, 14 Apr 2014 11:33:10 +0200 Subject: [PATCH 150/187] cleanup the shared storage, always keep the whole share resource --- apps/files_sharing/lib/cache.php | 8 +-- apps/files_sharing/lib/sharedstorage.php | 74 +++++++++++++----------- 2 files changed, 43 insertions(+), 39 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index bce22a74ba..7e44847e40 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -50,7 +50,7 @@ class Shared_Cache extends Cache { if ($target === false || $target === $this->storage->getMountPoint()) { $target = ''; } - $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); + $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getItemType()); if (isset($source['path']) && isset($source['fileOwner'])) { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); @@ -86,7 +86,7 @@ class Shared_Cache extends Cache { public function get($file) { if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { - $path = 'files/' . $this->storage->getMountPoint(); + $path = 'files' . $this->storage->getMountPoint(); $path .= ($file !== '') ? '/' . $file : ''; $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); @@ -141,7 +141,7 @@ class Shared_Cache extends Cache { $folder = ''; } - $dir = 'files/' . $this->storage->getMountPoint(); + $dir = 'files' . $this->storage->getMountPoint(); $dir .= ($folder !== '') ? '/' . $folder : ''; $cache = $this->getSourceCache($folder); @@ -226,7 +226,7 @@ class Shared_Cache extends Cache { */ public function move($source, $target) { if ($cache = $this->getSourceCache($source)) { - $file = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); + $file = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getItemType()); if ($file && isset($file['path'])) { $cache->move($this->files[$source], $file['path']); } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 8254f0e05c..7ce9dd58b4 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -28,19 +28,11 @@ namespace OC\Files\Storage; */ class Shared extends \OC\Files\Storage\Common { - private $mountPoint; // mount point relative to data/user/files - private $type; // can be "file" or "folder" - private $shareId; // share Id to identify the share in the database - private $fileSource; // file cache ID of the shared item - private $sharedFrom; // the user who shared the file + private $share; // the shared resource private $files = array(); public function __construct($arguments) { - $this->mountPoint = $arguments['shareTarget']; - $this->type = $arguments['shareType']; - $this->shareId = $arguments['shareId']; - $this->fileSource = $arguments['fileSource']; - $this->sharedFrom = $arguments['sharedFrom']; + $this->share = $arguments['share']; } /** @@ -48,7 +40,7 @@ class Shared extends \OC\Files\Storage\Common { * @return string */ public function getId() { - return 'shared::' . $this->mountPoint; + return 'shared::' . $this->getMountPoint(); } /** @@ -56,7 +48,7 @@ class Shared extends \OC\Files\Storage\Common { * @return string */ public function getSourceId() { - return $this->fileSource; + return $this->share['file_source']; } /** @@ -69,14 +61,14 @@ class Shared extends \OC\Files\Storage\Common { if (!isset($this->files[$target])) { // Check for partial files if (pathinfo($target, PATHINFO_EXTENSION) === 'part') { - $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5), $this->getMountPoint(), $this->getShareType()); + $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5), $this->getMountPoint(), $this->getItemType()); if ($source) { $source['path'] .= '.part'; // All partial files have delete permission $source['permissions'] |= \OCP\PERMISSION_DELETE; } } else { - $source = \OC_Share_Backend_File::getSource($target, $this->getMountPoint(), $this->getShareType()); + $source = \OC_Share_Backend_File::getSource($target, $this->getMountPoint(), $this->getItemType()); } $this->files[$target] = $source; } @@ -191,7 +183,7 @@ class Shared extends \OC\Files\Storage\Common { public function isCreatable($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } return ($this->getPermissions($path) & \OCP\PERMISSION_CREATE); } @@ -202,21 +194,21 @@ class Shared extends \OC\Files\Storage\Common { public function isUpdatable($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } return ($this->getPermissions($path) & \OCP\PERMISSION_UPDATE); } public function isDeletable($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } return ($this->getPermissions($path) & \OCP\PERMISSION_DELETE); } public function isSharable($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } return ($this->getPermissions($path) & \OCP\PERMISSION_SHARE); } @@ -241,7 +233,7 @@ class Shared extends \OC\Files\Storage\Common { $source = $this->getSourcePath($path); if ($source) { $info = array( - 'target' => $this->mountPoint . $path, + 'target' => $this->getMountPoint() . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info); @@ -259,7 +251,7 @@ class Shared extends \OC\Files\Storage\Common { return false; } $info = array( - 'target' => $this->mountPoint . '/' . $path, + 'target' => $this->getMountPoint() . '/' . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); @@ -332,7 +324,7 @@ class Shared extends \OC\Files\Storage\Common { WHERE `id` = ?' ); - $result = $query->execute(array($relTargetPath, $this->shareId)); + $result = $query->execute(array($relTargetPath, $this->getShareId())); if ($result) { // update the mount manager with the new paths @@ -358,7 +350,7 @@ class Shared extends \OC\Files\Storage\Common { // if we renamed the mount point we need to adjust the file_target in the // database - if (strlen($sourceMountPoint) >= strlen($path1)) { + if (\OC\Files\Filesystem::normalizePath($sourceMountPoint) === \OC\Files\Filesystem::normalizePath($path1)) { return $this->renameMountPoint($path1, $path2); } @@ -417,7 +409,7 @@ class Shared extends \OC\Files\Storage\Common { } } $info = array( - 'target' => $this->mountPoint . $path, + 'target' => $this->getMountPoint() . $path, 'source' => $source, 'mode' => $mode, ); @@ -438,7 +430,7 @@ class Shared extends \OC\Files\Storage\Common { public function free_space($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } $source = $this->getSourcePath($path); if ($source) { @@ -471,11 +463,7 @@ class Shared extends \OC\Files\Storage\Common { foreach ($shares as $share) { \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', array( - 'shareTarget' => $share['file_target'], - 'shareType' => $share['item_type'], - 'shareId' => $share['id'], - 'fileSource' => $share['file_source'], - 'sharedFrom' => $share['uid_owner'], + 'share' => $share, ), $options['user_dir'] . '/' . $share['file_target']); } @@ -487,7 +475,23 @@ class Shared extends \OC\Files\Storage\Common { * @return string */ public function getMountPoint() { - return ltrim($this->mountPoint, '/'); + return $this->share['file_target']; + } + + /** + * @brief get share type + * @return integer can be single user share (0) group share (1), unique group share name (2) + */ + private function getShareType() { + return $this->share['share_type']; + } + + /** + * @brief get share ID + * @return integer unique share ID + */ + private function getShareId() { + return $this->share['id']; } /** @@ -495,15 +499,15 @@ class Shared extends \OC\Files\Storage\Common { * @return string */ public function getSharedFrom() { - return $this->sharedFrom; + return $this->share['uid_owner']; } /** * @brief return share type, can be "file" or "folder" * @return string */ - public function getShareType() { - return $this->type; + public function getItemType() { + return $this->share['item_type']; } public function hasUpdated($path, $time) { @@ -528,7 +532,7 @@ class Shared extends \OC\Files\Storage\Common { public function getOwner($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } $source = $this->getFile($path); if ($source) { @@ -539,7 +543,7 @@ class Shared extends \OC\Files\Storage\Common { public function getETag($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } if ($source = $this->getSourcePath($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); -- GitLab From bffcbac7a78c8b88b581489cca9bb44795cf81eb Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Mon, 14 Apr 2014 12:04:12 +0200 Subject: [PATCH 151/187] allow to rename group share mount points --- apps/files_sharing/lib/sharedstorage.php | 43 ++++++++++++++++++++---- lib/private/share/share.php | 1 + 2 files changed, 37 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 7ce9dd58b4..25e6c0abd2 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -317,14 +317,27 @@ class Shared extends \OC\Files\Storage\Common { $relTargetPath = $this->stripUserFilesPath($targetPath); - // rename mount point - $query = \OC_DB::prepare( - 'Update `*PREFIX*share` - SET `file_target` = ? - WHERE `id` = ?' - ); + // if the user renames a mount point from a group share we need to create a new db entry + // for the unique name + if ($this->getShareType() === \OCP\Share::SHARE_TYPE_GROUP && $this->uniqueNameSet() === false) { + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' + .' `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`, `token`, `parent`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + $arguments = array($this->share['item_type'], $this->share['item_source'], $this->share['item_target'], + 2, \OCP\User::getUser(), $this->share['uid_owner'], $this->share['permissions'], $this->share['stime'], $this->share['file_source'], + $relTargetPath, $this->share['token'], $this->share['id']); - $result = $query->execute(array($relTargetPath, $this->getShareId())); + } else { + // rename mount point + $query = \OC_DB::prepare( + 'Update `*PREFIX*share` + SET `file_target` = ? + WHERE `id` = ?' + ); + $arguments = array($relTargetPath, $this->getShareId()); + } + + $result = $query->execute($arguments); if ($result) { // update the mount manager with the new paths @@ -333,6 +346,7 @@ class Shared extends \OC\Files\Storage\Common { $mount->setMountPoint($targetPath . '/'); $mountManager->addMount($mount); $mountManager->removeMount($sourcePath . '/'); + $this->setUniqueName(); } else { \OCP\Util::writeLog('file sharing', @@ -486,6 +500,21 @@ class Shared extends \OC\Files\Storage\Common { return $this->share['share_type']; } + /** + * @brief does the group share already has a user specific unique name + * @return bool + */ + private function uniqueNameSet() { + return (isset($this->share['unique_name']) && $this->share['unique_name']); + } + + /** + * @brief the share now uses a unique name of this user + */ + private function setUniqueName() { + $this->share['unique_name'] = true; + } + /** * @brief get share ID * @return integer unique share ID diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7af68d1b25..756a4d173e 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1139,6 +1139,7 @@ class Share extends \OC\Share\Constants { // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { $row['share_type'] = self::SHARE_TYPE_GROUP; + $row['unique_name'] = true; // remember that we use a unique name for this user $row['share_with'] = $items[$row['parent']]['share_with']; // Remove the parent group share unset($items[$row['parent']]); -- GitLab From aae22b2d6a5be03fca8de68e43305373dc07b3c4 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Mon, 14 Apr 2014 15:04:27 +0200 Subject: [PATCH 152/187] update script, create Shared folder and adjust target path for the shares --- apps/files_sharing/appinfo/update.php | 103 +++++++++++--------------- apps/files_sharing/appinfo/version | 2 +- 2 files changed, 44 insertions(+), 61 deletions(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index ab32108ea2..ebeeae10d2 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -1,73 +1,56 @@ <?php + $installedVersion = OCP\Config::getAppValue('files_sharing', 'installed_version'); -if (version_compare($installedVersion, '0.3', '<')) { - $update_error = false; - $query = OCP\DB::prepare('SELECT * FROM `*PREFIX*sharing`'); +if (version_compare($installedVersion, '0.4', '<')) { + $query = OCP\DB::prepare('SELECT * FROM `*PREFIX*share`'); $result = $query->execute(); - $groupShares = array(); - //we need to set up user backends, otherwise creating the shares will fail with "because user does not exist" + $view = new \OC\Files\View('/'); + $users = array(); + $shares = array(); + //we need to set up user backends OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); OC_App::loadApps(array('authentication')); - $rootView = new \OC\Files\View(''); + //we need to set up user backends, otherwise creating the shares will fail with "because user does not exist" while ($row = $result->fetchRow()) { - $meta = $rootView->getFileInfo($$row['source']); - $itemSource = $meta['fileid']; - if ($itemSource != -1) { - $file = $meta; - if ($file['mimetype'] == 'httpd/unix-directory') { - $itemType = 'folder'; - } else { - $itemType = 'file'; - } - if ($row['permissions'] == 0) { - $permissions = OCP\PERMISSION_READ | OCP\PERMISSION_SHARE; - } else { - $permissions = OCP\PERMISSION_READ | OCP\PERMISSION_UPDATE | OCP\PERMISSION_SHARE; - if ($itemType == 'folder') { - $permissions |= OCP\PERMISSION_CREATE; - } - } - $pos = strrpos($row['uid_shared_with'], '@'); - if ($pos !== false && OC_Group::groupExists(substr($row['uid_shared_with'], $pos + 1))) { - $shareType = OCP\Share::SHARE_TYPE_GROUP; - $shareWith = substr($row['uid_shared_with'], 0, $pos); - if (isset($groupShares[$shareWith][$itemSource])) { - continue; - } else { - $groupShares[$shareWith][$itemSource] = true; - } - } else if ($row['uid_shared_with'] == 'public') { - $shareType = OCP\Share::SHARE_TYPE_LINK; - $shareWith = null; - } else { - $shareType = OCP\Share::SHARE_TYPE_USER; - $shareWith = $row['uid_shared_with']; - } - OCP\JSON::checkUserExists($row['uid_owner']); - OC_User::setUserId($row['uid_owner']); - //we need to setup the filesystem for the user, otherwise OC_FileSystem::getRoot will fail and break - OC_Util::setupFS($row['uid_owner']); - try { - OCP\Share::shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions); - } - catch (Exception $e) { - $update_error = true; - OCP\Util::writeLog('files_sharing', - 'Upgrade Routine: Skipping sharing "'.$row['source'].'" to "'.$shareWith - .'" (error is "'.$e->getMessage().'")', - OCP\Util::WARN); - } - OC_Util::tearDownFS(); + //collect all user shares + if ($row['share_type'] === "0" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { + $users[] = $row['share_with']; + $shares[$row['id']] = $row['file_target']; + } else if ($row['share_type'] === "1" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { + //collect all group sharesX + $users = array_merge($users, \OC_group::usersInGroup($row['share_with'])); + $shares[$row['id']] = $row['file_target']; + } else if ($row['share_type'] === "2") { + $shares[$row['id']] = $row['file_target']; } } - OC_User::setUserId(null); - if ($update_error) { - OCP\Util::writeLog('files_sharing', 'There were some problems upgrading the sharing of files', OCP\Util::ERROR); + + $unique_users = array_unique($users); + + if (!empty($unique_users) && !empty($shares)) { + + // create folder Shared for each user + + foreach ($unique_users as $user) { + \OC\Files\Filesystem::initMountPoints($user); + if (!$view->file_exists('/' . $user . '/files/Shared')) { + $view->mkdir('/' . $user . '/files/Shared'); + } + } + + $statement = "UPDATE `*PREFIX*share` SET `file_target` = CASE id "; + //update share table + $ids = implode(',', array_keys($shares)); + foreach ($shares as $id => $target) { + $statement .= "WHEN " . $id . " THEN '/Shared" . $target . "' "; + } + $statement .= ' END WHERE `id` IN (' . $ids . ')'; + + $query = OCP\DB::prepare($statement); + $query->execute(array()); } - // NOTE: Let's drop the table after more testing -// $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`'); -// $query->execute(); + } // clean up oc_share table from files which are no longer exists diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 8f91d33378..bd73f47072 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3.5.6 +0.4 -- GitLab From b712393e72fc22dc9d38f074b2eca848e6439bcf Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Mon, 14 Apr 2014 17:08:46 +0200 Subject: [PATCH 153/187] fix etag propagation --- apps/files_sharing/appinfo/app.php | 2 - apps/files_sharing/lib/helper.php | 35 ++++++++++++++ apps/files_sharing/lib/updater.php | 77 +++++++++++++----------------- 3 files changed, 68 insertions(+), 46 deletions(-) diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 217bc005fa..0ef3457811 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -17,6 +17,4 @@ OCP\Util::addScript('files_sharing', 'share'); \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'postDeleteHook'); \OC_Hook::connect('OC_Filesystem', 'delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); -\OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook'); -\OC_Hook::connect('OCP\Share', 'pre_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook'); \OC_Hook::connect('OC_Appconfig', 'post_set_value', '\OCA\Files\Share\Maintainer', 'configChangeHook'); diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index b602fe3599..1381c0002d 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -111,4 +111,39 @@ class Helper { } return true; } + + public static function getSharesFromItem($target) { + $result = array(); + $owner = \OC\Files\Filesystem::getOwner($target); + \OC\Files\Filesystem::initMountPoints($owner); + $info = \OC\Files\Filesystem::getFileInfo($target); + $ownerView = new \OC\Files\View('/'.$owner.'/files'); + if ( $owner != \OCP\User::getUser() ) { + $path = $ownerView->getPath($info['fileid']); + } else { + $path = $target; + } + + + $ids = array(); + while ($path !== '' && $path !== '.' && $path !== '/') { + $info = $ownerView->getFileInfo($path); + $ids[] = $info['fileid']; + $path = dirname($path); + } + + if (!empty($ids)) { + + $idList = array_chunk($ids, 99, true); + + foreach ($idList as $subList) { + $statement = "SELECT `share_with`, `share_type`, `file_target` FROM `*PREFIX*share` WHERE `file_source` IN (" . implode(',', $subList) . ") AND `share_type` IN (0, 1, 2)"; + $query = \OCP\DB::prepare($statement); + $r = $query->execute(); + $result = array_merge($result, $r->fetchAll()); + } + } + + return $result; + } } diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index e3a7679292..f7c0a75aee 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -26,31 +26,48 @@ class Shared_Updater { // shares which can be removed from oc_share after the delete operation was successful static private $toRemove = array(); + /** + * @brief walk up the users file tree and update the etags + * @param string $user + * @param string $path + */ + static private function correctUsersFolder($user, $path) { + // $path points to the mount point which is a virtual folder, so we start with + // the parent + $path = '/files' . dirname($path); + \OC\Files\Filesystem::initMountPoints($user); + $view = new \OC\Files\View('/' . $user); + if ($view->file_exists($path)) { + while ($path !== '/') { + $etag = $view->getETag($path); + $view->putFileInfo($path, array('etag' => $etag)); + $path = dirname($path); + } + } else { + error_log("error!" . 'can not update etags on ' . $path . ' for user ' . $user); + \OCP\Util::writeLog('files_sharing', 'can not update etags on ' . $path . ' for user ' . $user, \OCP\Util::ERROR); + } + } + /** * Correct the parent folders' ETags for all users shared the file at $target * * @param string $target */ static public function correctFolders($target) { - $uid = \OCP\User::getUser(); - $uidOwner = \OC\Files\Filesystem::getOwner($target); - $info = \OC\Files\Filesystem::getFileInfo($target); - $checkedUser = array($uidOwner); // Correct Shared folders of other users shared with - $users = \OCP\Share::getUsersItemShared('file', $info['fileid'], $uidOwner, true); - if (!empty($users)) { - while (!empty($users)) { - $reshareUsers = array(); + $shares = \OCA\Files_Sharing\Helper::getSharesFromItem($target); + + foreach ($shares as $share) { + if ((int)$share['share_type'] === \OCP\Share::SHARE_TYPE_USER) { + self::correctUsersFolder($share['share_with'], $share['file_target']); + } elseif ((int)$share['share_type'] === \OCP\Share::SHARE_TYPE_GROUP) { + $users = \OC_Group::usersInGroup($share['share_with']); foreach ($users as $user) { - if ( !in_array($user, $checkedUser) ) { - $etag = \OC\Files\Filesystem::getETag(''); - \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); - // Look for reshares - $reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $info['fileid'], $user, true)); - $checkedUser[] = $user; - } + self::correctUsersFolder($user, $share['file_target']); } - $users = $reshareUsers; + } else { //unique name for group share + self::correctUsersFolder($share['share_with'], $share['file_target']); } } } @@ -107,34 +124,6 @@ class Shared_Updater { self::removeShare($params['path']); } - /** - * @param array $params - */ - static public function shareHook($params) { - if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { - if (isset($params['uidOwner'])) { - $uidOwner = $params['uidOwner']; - } else { - $uidOwner = \OCP\User::getUser(); - } - $users = \OCP\Share::getUsersItemShared($params['itemType'], $params['fileSource'], $uidOwner, true, false); - if (!empty($users)) { - while (!empty($users)) { - $reshareUsers = array(); - foreach ($users as $user) { - if ($user !== $uidOwner) { - $etag = \OC\Files\Filesystem::getETag(''); - \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); - // Look for reshares - $reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $params['fileSource'], $user, true)); - } - } - $users = $reshareUsers; - } - } - } - } - /** * clean up oc_share table from files which are no longer exists * -- GitLab From 652d417a585ede1564456c446577aa1752253ccd Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 15 Apr 2014 11:19:31 +0200 Subject: [PATCH 154/187] we don't allow to share a folder if it contains a share mount point --- apps/files_sharing/lib/cache.php | 7 +-- apps/files_sharing/lib/sharedstorage.php | 5 ++ apps/files_sharing/tests/api.php | 60 ++++++++++++++++++++++++ apps/files_sharing/tests/cache.php | 6 +-- lib/private/files/view.php | 3 +- lib/private/share/share.php | 16 +++++++ 6 files changed, 90 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 7e44847e40..3d9fbcf4de 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -411,7 +411,7 @@ class Shared_Cache extends Cache { } /** - * get the path of a file on this storage by it's id + * get the path of a file on this storage relative to the mount point by it's id * * @param int $id * @param string $pathEnd (optional) used internally for recursive calls @@ -419,8 +419,9 @@ class Shared_Cache extends Cache { */ public function getPathById($id, $pathEnd = '') { // direct shares are easy - if ($path = $this->getShareById($id)) { - return $path . $pathEnd; + $path = $this->getShareById($id); + if (is_string($path)) { + return ltrim($pathEnd, '/'); } else { // if the item is a direct share we try and get the path of the parent and append the name of the item to it list($parent, $name) = $this->getParentInfo($id); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 25e6c0abd2..eedd279bf2 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -347,6 +347,7 @@ class Shared extends \OC\Files\Storage\Common { $mountManager->addMount($mount); $mountManager->removeMount($sourcePath . '/'); $this->setUniqueName(); + $this->setMountPoint($relTargetPath); } else { \OCP\Util::writeLog('file sharing', @@ -500,6 +501,10 @@ class Shared extends \OC\Files\Storage\Common { return $this->share['share_type']; } + private function setMountPoint($path) { + $this->share['file_target'] = $path; + } + /** * @brief does the group share already has a user specific unique name * @return bool diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 6354d1099b..5975eb9588 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -866,6 +866,66 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue($result3->succeeded()); + // cleanup + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + $this->assertTrue($result); + + + + } + + /** + * @brief share a folder which contains a share mount point, should be forbidden + */ + public function testShareFolderWithAMountPoint() { + // user 1 shares a folder with user2 + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $fileInfo = $this->view->getFileInfo($this->folder); + + $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + $this->assertTrue($result); + + // user2 shares a file from the folder as link + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + $view = new \OC\Files\View('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2 . '/files'); + $view->mkdir("localDir"); + + // move mount point to the folder "localDir" + $result = $view->rename($this->folder, 'localDir/'.$this->folder); + $this->assertTrue($result !== false); + + // try to share "localDir" + $fileInfo2 = $view->getFileInfo('localDir'); + + $this->assertTrue($fileInfo2 instanceof \OC\Files\FileInfo); + + try { + $result2 = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31); + } catch (\Exception $e) { + $result2 = false; + } + + $this->assertFalse($result2); + + //cleanup + + $result = $view->rename('localDir/' . $this->folder, $this->folder); + $this->assertTrue($result !== false); + $view->unlink('localDir'); + + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); } } diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index 7a52f403d8..b8ebeab3c3 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -255,7 +255,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { */ $sharedCache = $sharedStorage->getCache(); - $this->assertEquals('test.txt', $sharedCache->getPathById($info->getId())); + $this->assertEquals('', $sharedCache->getPathById($info->getId())); } public function testGetPathByIdShareSubFolder() { @@ -276,7 +276,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { */ $sharedCache = $sharedStorage->getCache(); - $this->assertEquals('foo', $sharedCache->getPathById($folderInfo->getId())); - $this->assertEquals('foo/bar/test.txt', $sharedCache->getPathById($fileInfo->getId())); + $this->assertEquals('', $sharedCache->getPathById($folderInfo->getId())); + $this->assertEquals('bar/test.txt', $sharedCache->getPathById($fileInfo->getId())); } } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 3f73632be1..a61d58aaf2 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1168,7 +1168,8 @@ class View { * @var \OC\Files\Mount\Mount $mount */ $cache = $mount->getStorage()->getCache(); - if ($internalPath = $cache->getPathById($id)) { + $internalPath = $cache->getPathById($id); + if (is_string($internalPath)) { $fullPath = $mount->getMountPoint() . $internalPath; if (!is_null($path = $this->getRelativePath($fullPath))) { return $path; diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 756a4d173e..c07dd04b29 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -489,6 +489,7 @@ class Share extends \OC\Share\Constants { $itemSourceName = $itemSource; } + // verify that the file exists before we try to share it if ($itemType === 'file' or $itemType === 'folder') { $path = \OC\Files\Filesystem::getPath($itemSource); @@ -499,6 +500,21 @@ class Share extends \OC\Share\Constants { } } + //verify that we don't share a folder which already contains a share mount point + if ($itemType === 'folder') { + $path = '/' . $uidOwner . '/files' . \OC\Files\Filesystem::getPath($itemSource) . '/'; + $mountManager = \OC\Files\Filesystem::getMountManager(); + $mounts = $mountManager->getAll(); + foreach ($mounts as $mountPoint => $mount) { + if ($mount->getStorage() instanceof \OC\Files\Storage\Shared && strpos($mountPoint, $path) === 0) { + $message = 'Sharing "' . $itemSourceName . '" failed, because it contains files shared with you!'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + } + } + // Verify share type and sharing conditions are met if ($shareType === self::SHARE_TYPE_USER) { if ($shareWith == $uidOwner) { -- GitLab From d468cdacf27acf1de78a7b2f07d21d1851aa8f39 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 15 Apr 2014 15:48:54 +0200 Subject: [PATCH 155/187] add unit tests which got lost during rebase --- apps/files_sharing/tests/api.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 5975eb9588..b2f05d10ac 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -928,4 +928,27 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); } + /** + * @expectedException \Exception + */ + public function testShareNonExisting() { + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $id = PHP_INT_MAX - 1; + \OCP\Share::shareItem('file', $id, \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + } + + /** + * @expectedException \Exception + */ + public function testShareNotOwner() { + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + \OC\Files\Filesystem::file_put_contents('foo.txt', 'bar'); + $info = \OC\Files\Filesystem::getFileInfo('foo.txt'); + + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + } + } -- GitLab From fb88aba8f4927b3175df34a2a499978a3b4c1b6b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Tue, 15 Apr 2014 20:18:04 +0200 Subject: [PATCH 156/187] some fixes to make the gallery work, this made it necessary to adjust some tests and the encryption code --- apps/files_encryption/hooks/hooks.php | 127 +++----------------------- apps/files_encryption/lib/util.php | 101 ++------------------ apps/files_sharing/lib/cache.php | 5 +- apps/files_sharing/tests/cache.php | 18 ++-- lib/private/share/share.php | 1 + 5 files changed, 33 insertions(+), 219 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 7a8b54e2d7..5f0494e62c 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -302,25 +302,6 @@ class Hooks { */ public static function postShared($params) { - // NOTE: $params has keys: - // [itemType] => file - // itemSource -> int, filecache file ID - // [parent] => - // [itemTarget] => /13 - // shareWith -> string, uid of user being shared to - // fileTarget -> path of file being shared - // uidOwner -> owner of the original file being shared - // [shareType] => 0 - // [shareWith] => test1 - // [uidOwner] => admin - // [permissions] => 17 - // [fileSource] => 13 - // [fileTarget] => /test8 - // [id] => 10 - // [token] => - // [run] => whether emitting script should continue to run - // TODO: Should other kinds of item be encrypted too? - if (\OCP\App::isEnabled('files_encryption') === false) { return true; } @@ -331,68 +312,22 @@ class Hooks { $session = new \OCA\Encryption\Session($view); $userId = \OCP\User::getUser(); $util = new Util($view, $userId); - $path = $util->fileIdToPath($params['itemSource']); - - $share = $util->getParentFromShare($params['id']); - //if parent is set, then this is a re-share action - if ($share['parent'] !== null) { - - // get the parent from current share - $parent = $util->getShareParent($params['parent']); - - // if parent has the same type than the child it is a 1:1 share - if ($parent['item_type'] === $params['itemType']) { - $path = $parent['file_target']; - } else { - - // NOTE: parent is folder but shared was a file! - // we try to rebuild the missing path - // some examples we face here - // user1 share folder1 with user2 folder1 has - // the following structure - // /folder1/subfolder1/subsubfolder1/somefile.txt - // user2 re-share subfolder2 with user3 - // user3 re-share somefile.txt user4 - // so our path should be - // /Shared/subfolder1/subsubfolder1/somefile.txt - // while user3 is sharing - - if ($params['itemType'] === 'file') { - // get target path - $targetPath = $util->fileIdToPath($params['fileSource']); - $targetPathSplit = array_reverse(explode('/', $targetPath)); - - // init values - $path = ''; - $sharedPart = ltrim($parent['file_target'], '/'); - - // rebuild path - foreach ($targetPathSplit as $pathPart) { - if ($pathPart !== $sharedPart) { - $path = '/' . $pathPart . $path; - } else { - break; - } - } - $path = $parent['file_target'] . $path; - } else { - $path = $parent['file_target'] . $params['fileTarget']; - } - } - } + $path = \OC\Files\Filesystem::getPath($params['fileSource']); $sharingEnabled = \OCP\Share::isEnabled(); // get the path including mount point only if not a shared folder list($storage, ) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/files' . $path); - if (!($storage instanceof \OC\Files\Storage\Shared)) { - // get path including the the storage mount point - $path = $util->getPathWithMountPoint($params['itemSource']); + + if (!($storage instanceof \OC\Files\Storage\Local)) { + $mountPoint = 'files' . $storage->getMountPoint(); + } else { + $mountPoint = ''; } // if a folder was shared, get a list of all (sub-)folders if ($params['itemType'] === 'folder') { - $allFiles = $util->getAllFiles($path); + $allFiles = $util->getAllFiles($path, $mountPoint); } else { $allFiles = array($path); } @@ -409,13 +344,6 @@ class Hooks { */ public static function postUnshare($params) { - // NOTE: $params has keys: - // [itemType] => file - // [itemSource] => 13 - // [shareType] => 0 - // [shareWith] => test1 - // [itemParent] => - if (\OCP\App::isEnabled('files_encryption') === false) { return true; } @@ -425,34 +353,7 @@ class Hooks { $view = new \OC_FilesystemView('/'); $userId = \OCP\User::getUser(); $util = new Util($view, $userId); - $path = $util->fileIdToPath($params['itemSource']); - - // check if this is a re-share - if ($params['itemParent']) { - - // get the parent from current share - $parent = $util->getShareParent($params['itemParent']); - - // get target path - $targetPath = $util->fileIdToPath($params['itemSource']); - $targetPathSplit = array_reverse(explode('/', $targetPath)); - - // init values - $path = ''; - $sharedPart = ltrim($parent['file_target'], '/'); - - // rebuild path - foreach ($targetPathSplit as $pathPart) { - if ($pathPart !== $sharedPart) { - $path = '/' . $pathPart . $path; - } else { - break; - } - } - - // prefix path with Shared - $path = $parent['file_target'] . $path; - } + $path = \OC\Files\Filesystem::getPath($params['fileSource']); // for group shares get a list of the group members if ($params['shareType'] === \OCP\Share::SHARE_TYPE_GROUP) { @@ -466,15 +367,17 @@ class Hooks { } // get the path including mount point only if not a shared folder - list($storage, ) = \OC\Files\Filesystem::resolvePath($path); - if (!($storage instanceof \OC\Files\Storage\Shared)) { - // get path including the the storage mount point - //$path = $util->getPathWithMountPoint($params['itemSource']); + list($storage, ) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/files' . $path); + + if (!($storage instanceof \OC\Files\Storage\Local)) { + $mountPoint = 'files' . $storage->getMountPoint(); + } else { + $mountPoint = ''; } // if we unshare a folder we need a list of all (sub-)files if ($params['itemType'] === 'folder') { - $allFiles = $util->getAllFiles($path); + $allFiles = $util->getAllFiles($path, $mountPoint); } else { $allFiles = array($path); } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 4be4ab9565..6372ab31b6 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -969,33 +969,6 @@ class Util { } - /** - * @brief get path of a file. - * @param int $fileId id of the file - * @return string path of the file - */ - public static function fileIdToPath($fileId) { - - $sql = 'SELECT `path` FROM `*PREFIX*filecache` WHERE `fileid` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($fileId)); - - $path = false; - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - if ($row) { - $path = substr($row['path'], strlen('files')); - } - } - - return $path; - - } - /** * @brief Filter an array of UIDs to return only ones ready for sharing * @param array $unfilteredUsers users to be checked for sharing readiness @@ -1398,7 +1371,7 @@ class Util { * @param string $dir relative to the users files folder * @return array with list of files relative to the users files folder */ - public function getAllFiles($dir) { + public function getAllFiles($dir, $mountPoint = '') { $result = array(); $dirList = array($dir); @@ -1408,10 +1381,13 @@ class Util { $this->userFilesDir . '/' . $dir)); foreach ($content as $c) { + // getDirectoryContent() returns the paths relative to the mount points, so we need + // to re-construct the complete path + $path = ($mountPoint !== '') ? $mountPoint . '/' . $c['path'] : $c['path']; if ($c['type'] === 'dir') { - $dirList[] = substr($c['path'], strlen("files")); + $dirList[] = substr($path, strlen("files")); } else { - $result[] = substr($c['path'], strlen("files")); + $result[] = substr($path, strlen("files")); } } @@ -1420,54 +1396,6 @@ class Util { return $result; } - /** - * @brief get shares parent. - * @param int $id of the current share - * @return array of the parent - */ - public static function getShareParent($id) { - - $sql = 'SELECT `file_target`, `item_type` FROM `*PREFIX*share` WHERE `id` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($id)); - - $row = array(); - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - } - - return $row; - - } - - /** - * @brief get shares parent. - * @param int $id of the current share - * @return array of the parent - */ - public static function getParentFromShare($id) { - - $sql = 'SELECT `parent` FROM `*PREFIX*share` WHERE `id` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($id)); - - $row = array(); - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - } - - return $row; - - } - /** * @brief get owner of the shared files. * @param $id @@ -1709,23 +1637,6 @@ class Util { $this->recoverAllFiles('/', $privateKey); } - /** - * Get the path including the storage mount point - * @param int $id - * @return string the path including the mount point like AmazonS3/folder/file.txt - */ - public function getPathWithMountPoint($id) { - list($storage, $internalPath) = \OC\Files\Cache\Cache::getById($id); - $mount = \OC\Files\Filesystem::getMountByStorageId($storage); - $mountPoint = $mount[0]->getMountPoint(); - $path = \OC\Files\Filesystem::normalizePath($mountPoint . '/' . $internalPath); - - // reformat the path to be relative e.g. /user/files/folder becomes /folder/ - $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - - return $relativePath; - } - /** * @brief check if the file is stored on a system wide mount point * @param $path relative to /data/user with leading '/' diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 3d9fbcf4de..4b473c6057 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -141,15 +141,14 @@ class Shared_Cache extends Cache { $folder = ''; } - $dir = 'files' . $this->storage->getMountPoint(); - $dir .= ($folder !== '') ? '/' . $folder : ''; + $dir = ($folder !== '') ? $folder . '/' : ''; $cache = $this->getSourceCache($folder); if ($cache) { $parent = $this->storage->getFile($folder); $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); foreach ($sourceFolderContent as $key => $c) { - $sourceFolderContent[$key]['path'] = $dir . '/' . $c['name']; + $sourceFolderContent[$key]['path'] = $dir . $c['name']; $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index b8ebeab3c3..1af73c558d 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -100,15 +100,15 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { $check = array( array( 'name' => 'bar.txt', - 'path' => 'files/shareddir/bar.txt' + 'path' => 'bar.txt' ), array( 'name' => 'another too.txt', - 'path' => 'files/shareddir/subdir/another too.txt' + 'path' => 'subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'files/shareddir/subdir/another.txt' + 'path' => 'subdir/another.txt' ), ); $this->verifyFiles($check, $results); @@ -151,17 +151,17 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { array( array( 'name' => 'bar.txt', - 'path' => 'files/shareddir/bar.txt', + 'path' => 'bar.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'emptydir', - 'path' => 'files/shareddir/emptydir', + 'path' => 'emptydir', 'mimetype' => 'httpd/unix-directory', ), array( 'name' => 'subdir', - 'path' => 'files/shareddir/subdir', + 'path' => 'subdir', 'mimetype' => 'httpd/unix-directory', ), ), @@ -185,17 +185,17 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { array( array( 'name' => 'another too.txt', - 'path' => 'files/subdir/another too.txt', + 'path' => 'another too.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'another.txt', - 'path' => 'files/subdir/another.txt', + 'path' => 'another.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'not a text file.xml', - 'path' => 'files/subdir/not a text file.xml', + 'path' => 'not a text file.xml', 'mimetype' => 'application/xml', ), ), diff --git a/lib/private/share/share.php b/lib/private/share/share.php index c07dd04b29..4e3e261baf 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -896,6 +896,7 @@ class Share extends \OC\Share\Constants { $hookParams = array( 'itemType' => $item['item_type'], 'itemSource' => $item['item_source'], + 'fileSource' => $item['file_source'], 'shareType' => $item['share_type'], 'shareWith' => $item['share_with'], 'itemParent' => $item['parent'], -- GitLab From 2049bedcaf670ef2394ce8b19e0d3f2174513b53 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Tue, 15 Apr 2014 16:36:05 +0200 Subject: [PATCH 157/187] Dont throw an error when a storage isn't found for shared cache --- apps/files_sharing/lib/cache.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 4b473c6057..4a2f0ff08b 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -53,9 +53,9 @@ class Shared_Cache extends Cache { $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getItemType()); if (isset($source['path']) && isset($source['fileOwner'])) { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); - $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); - if (is_array($mount)) { - $fullPath = $mount[key($mount)]->getMountPoint() . $source['path']; + $mounts = \OC\Files\Filesystem::getMountByNumericId($source['storage']); + if (is_array($mounts) and count($mounts)) { + $fullPath = $mounts[0]->getMountPoint() . $source['path']; list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($fullPath); if ($storage) { $this->files[$target] = $internalPath; -- GitLab From dd1e47b3b896e2ee59faf5f423bb911c5d2c2548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Tue, 15 Apr 2014 20:26:04 +0200 Subject: [PATCH 158/187] typos, use, unused and return fixed --- apps/files_sharing/appinfo/update.php | 4 +++- apps/files_sharing/lib/helper.php | 7 +++---- apps/files_sharing/lib/sharedstorage.php | 5 +++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index ebeeae10d2..c79a2291e9 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -18,7 +18,7 @@ if (version_compare($installedVersion, '0.4', '<')) { $users[] = $row['share_with']; $shares[$row['id']] = $row['file_target']; } else if ($row['share_type'] === "1" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { - //collect all group sharesX + //collect all group shares $users = array_merge($users, \OC_group::usersInGroup($row['share_with'])); $shares[$row['id']] = $row['file_target']; } else if ($row['share_type'] === "2") { @@ -48,7 +48,9 @@ if (version_compare($installedVersion, '0.4', '<')) { $statement .= ' END WHERE `id` IN (' . $ids . ')'; $query = OCP\DB::prepare($statement); + $query->execute(array()); + } } diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index 1381c0002d..e2780e9893 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -2,6 +2,9 @@ namespace OCA\Files_Sharing; +use OC_Config; +use PasswordHash; + class Helper { /** @@ -26,9 +29,6 @@ class Helper { exit; } - $type = $linkItem['item_type']; - $fileSource = $linkItem['file_source']; - $shareOwner = $linkItem['uid_owner']; $rootLinkItem = \OCP\Share::resolveReShare($linkItem); $path = null; if (isset($rootLinkItem['uid_owner'])) { @@ -61,7 +61,6 @@ class Helper { } $basePath = $path; - $rootName = basename($path); if ($relativePath !== null && \OC\Files\Filesystem::isReadable($basePath . $relativePath)) { $path .= \OC\Files\Filesystem::normalizePath($relativePath); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index eedd279bf2..b8a799f720 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -299,14 +299,14 @@ class Shared extends \OC\Files\Storage\Common { } /** - * @brief rename a shared foder/file + * @brief rename a shared folder/file * @param string $sourcePath * @param string $targetPath * @return bool */ private function renameMountPoint($sourcePath, $targetPath) { - // it shoulbn't be possible to move a Shared storage into another one + // it shouldn't be possible to move a Shared storage into another one list($targetStorage, ) = \OC\Files\Filesystem::resolvePath($targetPath); if ($targetStorage instanceof \OC\Files\Storage\Shared) { \OCP\Util::writeLog('file sharing', @@ -452,6 +452,7 @@ class Shared extends \OC\Files\Storage\Common { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); return $storage->free_space($internalPath); } + return \OC\Files\SPACE_UNKNOWN; } public function getLocalFile($path) { -- GitLab From 93469ca46865d02d33710a2f70f7f6092c8f5c58 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Wed, 16 Apr 2014 16:41:23 +0200 Subject: [PATCH 159/187] make it possible to move files out of a shared mount point --- apps/files_sharing/lib/helper.php | 31 ++++++++++++++++++++++++ apps/files_sharing/lib/sharedstorage.php | 27 +++++++++++---------- lib/private/files/view.php | 8 +++--- 3 files changed, 49 insertions(+), 17 deletions(-) diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index e2780e9893..cc1f7d9ffd 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -145,4 +145,35 @@ class Helper { return $result; } + + public static function getUidAndFilename($filename) { + $uid = \OC\Files\Filesystem::getOwner($filename); + \OC\Files\Filesystem::initMountPoints($uid); + if ( $uid != \OCP\User::getUser() ) { + $info = \OC\Files\Filesystem::getFileInfo($filename); + $ownerView = new \OC\Files\View('/'.$uid.'/files'); + $filename = $ownerView->getPath($info['fileid']); + } + return array($uid, $filename); + } + + /** + * @brief Format a path to be relative to the /user/files/ directory + * @param string $path the absolute path + * @return string e.g. turns '/admin/files/test.txt' into 'test.txt' + */ + public static function stripUserFilesPath($path) { + $trimmed = ltrim($path, '/'); + $split = explode('/', $trimmed); + + // it is not a file relative to data/user/files + if (count($split) < 3 || $split[1] !== 'files') { + return false; + } + + $sliced = array_slice($split, 2); + $relPath = implode('/', $sliced); + + return $relPath; + } } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index b8a799f720..5e478d5ead 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -362,6 +362,9 @@ class Shared extends \OC\Files\Storage\Common { public function rename($path1, $path2) { $sourceMountPoint = \OC\Files\Filesystem::getMountPoint($path1); + $targetMountPoint = \OC\Files\Filesystem::getMountPoint($path2); + $relPath1 = \OCA\Files_Sharing\Helper::stripUserFilesPath($path1); + $relPath2 = \OCA\Files_Sharing\Helper::stripUserFilesPath($path2); // if we renamed the mount point we need to adjust the file_target in the // database @@ -369,21 +372,19 @@ class Shared extends \OC\Files\Storage\Common { return $this->renameMountPoint($path1, $path2); } - // Renaming/moving is only allowed within shared folders - $oldSource = $this->getSourcePath($path1); - if ($oldSource) { - $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2); - // Within the same folder, we only need UPDATE permissions - if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) { - list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); - list(, $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource); - return $storage->rename($oldInternalPath, $newInternalPath); + + if ( // Within the same mount point, we only need UPDATE permissions + ($sourceMountPoint === $targetMountPoint && $this->isUpdatable($sourceMountPoint)) || // otherwise DELETE and CREATE permissions required - } elseif ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) { - $rootView = new \OC\Files\View(''); - return $rootView->rename($oldSource, $newSource); - } + ($this->isDeletable($path1) && $this->isCreatable(dirname($path2)))) { + + list($user1, $path1) = \OCA\Files_Sharing\Helper::getUidAndFilename($relPath1); + $targetFilename = basename($relPath2); + list($user2, $path2) = \OCA\Files_Sharing\Helper::getUidAndFilename(dirname($relPath2)); + $rootView = new \OC\Files\View(''); + return $rootView->rename('/' . $user1 . '/files/' . $path1, '/' . $user2 . '/files/' . $path2 . '/' . $targetFilename); } + return false; } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index a61d58aaf2..58dfc73dcf 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -410,16 +410,16 @@ class View { // if source and target are on the same storage we can call the rename operation from the // storage. If it is a "Shared" file/folder we call always the rename operation of the // shared storage to handle mount point renaming, etc correctly - if ($mp1 == $mp2) { + if ($storage1 instanceof \OC\Files\Storage\Shared) { if ($storage1) { - $result = $storage1->rename($internalPath1, $internalPath2); + $result = $storage1->rename($absolutePath1, $absolutePath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; } - } elseif ($storage1 instanceof \OC\Files\Storage\Shared) { + } elseif ($mp1 == $mp2) { if ($storage1) { - $result = $storage1->rename($absolutePath1, $absolutePath2); + $result = $storage1->rename($internalPath1, $internalPath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; -- GitLab From b102222fed33245c6da8a39c28f0d0a570d0dbea Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Wed, 16 Apr 2014 17:43:02 +0200 Subject: [PATCH 160/187] split-up the update script and add unit tests for it --- apps/files_sharing/appinfo/update.php | 58 +++++++++++++++++---------- apps/files_sharing/tests/updater.php | 55 +++++++++++++++++++++++++ 2 files changed, 92 insertions(+), 21 deletions(-) diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index c79a2291e9..bc8cda4231 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -2,6 +2,21 @@ $installedVersion = OCP\Config::getAppValue('files_sharing', 'installed_version'); if (version_compare($installedVersion, '0.4', '<')) { + removeSharedFolder(); +} + +// clean up oc_share table from files which are no longer exists +if (version_compare($installedVersion, '0.3.5.6', '<')) { + \OC\Files\Cache\Shared_Updater::fixBrokenSharesOnAppUpdate(); +} + + +/** + * update script for the removal of the logical "Shared" folder, we create physical "Shared" folder and + * update the users file_target so that it doesn't make any difference for the user + * @note parameters are just for testing, please ignore them + */ +function removeSharedFolder($mkdirs = true, $chunkSize = 99) { $query = OCP\DB::prepare('SELECT * FROM `*PREFIX*share`'); $result = $query->execute(); $view = new \OC\Files\View('/'); @@ -14,14 +29,14 @@ if (version_compare($installedVersion, '0.4', '<')) { //we need to set up user backends, otherwise creating the shares will fail with "because user does not exist" while ($row = $result->fetchRow()) { //collect all user shares - if ($row['share_type'] === "0" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { + if ((int)$row['share_type'] === 0 && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { $users[] = $row['share_with']; $shares[$row['id']] = $row['file_target']; - } else if ($row['share_type'] === "1" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { + } else if ((int)$row['share_type'] === 1 && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { //collect all group shares $users = array_merge($users, \OC_group::usersInGroup($row['share_with'])); $shares[$row['id']] = $row['file_target']; - } else if ($row['share_type'] === "2") { + } else if ((int)$row['share_type'] === 2) { $shares[$row['id']] = $row['file_target']; } } @@ -32,30 +47,31 @@ if (version_compare($installedVersion, '0.4', '<')) { // create folder Shared for each user - foreach ($unique_users as $user) { - \OC\Files\Filesystem::initMountPoints($user); - if (!$view->file_exists('/' . $user . '/files/Shared')) { - $view->mkdir('/' . $user . '/files/Shared'); + if ($mkdirs) { + foreach ($unique_users as $user) { + \OC\Files\Filesystem::initMountPoints($user); + if (!$view->file_exists('/' . $user . '/files/Shared')) { + $view->mkdir('/' . $user . '/files/Shared'); + } } } - $statement = "UPDATE `*PREFIX*share` SET `file_target` = CASE id "; - //update share table - $ids = implode(',', array_keys($shares)); - foreach ($shares as $id => $target) { - $statement .= "WHEN " . $id . " THEN '/Shared" . $target . "' "; - } - $statement .= ' END WHERE `id` IN (' . $ids . ')'; + $chunkedShareList = array_chunk($shares, $chunkSize, true); - $query = OCP\DB::prepare($statement); + foreach ($chunkedShareList as $subList) { - $query->execute(array()); + $statement = "UPDATE `*PREFIX*share` SET `file_target` = CASE `id` "; + //update share table + $ids = implode(',', array_keys($subList)); + foreach ($subList as $id => $target) { + $statement .= "WHEN " . $id . " THEN '/Shared" . $target . "' "; + } + $statement .= ' END WHERE `id` IN (' . $ids . ')'; - } + $query = OCP\DB::prepare($statement); -} + $query->execute(array()); + } -// clean up oc_share table from files which are no longer exists -if (version_compare($installedVersion, '0.3.5.6', '<')) { - \OC\Files\Cache\Shared_Updater::fixBrokenSharesOnAppUpdate(); + } } diff --git a/apps/files_sharing/tests/updater.php b/apps/files_sharing/tests/updater.php index 79ae4879b6..3427cfe388 100644 --- a/apps/files_sharing/tests/updater.php +++ b/apps/files_sharing/tests/updater.php @@ -20,6 +20,8 @@ * */ +require_once __DIR__ . '/../appinfo/update.php'; + /** * Class Test_Files_Sharing_Updater */ @@ -88,4 +90,57 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { $result = $countItems->execute()->fetchOne(); $this->assertEquals(2, $result); } + + /** + * test update for the removal of the logical "Shared" folder. It should update + * the file_target for every share and create a physical "Shared" folder for each user + */ + function testRemoveSharedFolder() { + self::prepareDB(); + // run the update routine to remove the shared folder and replace it with a real folder + removeSharedFolder(false, 2); + + // verify results + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share`'); + $result = $query->execute(array()); + + $newDBContent = $result->fetchAll(); + + foreach ($newDBContent as $row) { + if ((int)$row['share_type'] === \OCP\Share::SHARE_TYPE_USER) { + $this->assertSame('/Shared', substr($row['file_target'], 0, strlen('/Shared'))); + } else { + $this->assertSame('/ShouldNotChange', $row['file_target']); + } + } + + $this->cleanupSharedTable(); + + } + + private function cleanupSharedTable() { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`'); + $query->execute(); + } + + private function prepareDB() { + $this->cleanupSharedTable(); + // add items except one - because this is the test case for the broken share table + $addItems = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`share_type`, `item_type`, ' . + '`share_with`, `uid_owner` , `file_target`) ' . + 'VALUES (?, ?, ?, ?, ?)'); + $items = array( + array(\OCP\Share::SHARE_TYPE_USER, 'file', 'user1', 'admin' , '/foo'), + array(\OCP\Share::SHARE_TYPE_USER, 'folder', 'user2', 'admin', '/foo2'), + array(\OCP\Share::SHARE_TYPE_USER, 'file', 'user3', 'admin', '/foo3'), + array(\OCP\Share::SHARE_TYPE_USER, 'folder', 'user4', 'admin', '/foo4'), + array(\OCP\Share::SHARE_TYPE_LINK, 'file', 'user1', 'admin', '/ShouldNotChange'), + array(\OCP\Share::SHARE_TYPE_CONTACT, 'contact', 'admin', 'user1', '/ShouldNotChange'), + + ); + foreach($items as $item) { + // the number is used as path_hash + $addItems->execute($item); + } + } } -- GitLab From 7ef8f6d352811e635bc6cf99b56d9482a54eb791 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Thu, 17 Apr 2014 15:54:45 +0200 Subject: [PATCH 161/187] always allow to rename the share mount point --- apps/files/js/filelist.js | 13 ++++++++++++- apps/files/lib/helper.php | 3 +++ apps/files_sharing/lib/cache.php | 4 ++++ lib/private/connector/sabre/objecttree.php | 8 +++++++- 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 343da21741..390bf4e057 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -178,6 +178,13 @@ window.FileList = { if (type === 'dir') { mime = mime || 'httpd/unix-directory'; } + + // user should always be able to rename a share mount point + var allowRename = 0; + if (fileData.isShareMountPoint) { + allowRename = OC.PERMISSION_UPDATE; + } + //containing tr var tr = $('<tr></tr>').attr({ "data-id" : fileData.id, @@ -187,7 +194,7 @@ window.FileList = { "data-mime": mime, "data-mtime": mtime, "data-etag": fileData.etag, - "data-permissions": fileData.permissions || this.getDirectoryPermissions() + "data-permissions": fileData.permissions | allowRename || this.getDirectoryPermissions() }); if (type === 'dir') { @@ -283,6 +290,10 @@ window.FileList = { mime = fileData.mimetype, permissions = parseInt(fileData.permissions, 10) || 0; + if (fileData.isShareMountPoint) { + permissions = permissions | OC.PERMISSION_UPDATE; + } + if (type === 'dir') { mime = mime || 'httpd/unix-directory'; } diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index 88a5ffcfb6..0ae87d12fb 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -96,6 +96,9 @@ class Helper if (isset($i['displayname_owner'])) { $entry['shareOwner'] = $i['displayname_owner']; } + if (isset($i['is_share_mount_point'])) { + $entry['isShareMountPoint'] = $i['is_share_mount_point']; + } return $entry; } diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 4a2f0ff08b..67a0410ef7 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -91,6 +91,9 @@ class Shared_Cache extends Cache { $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); $data['path'] = $path; + if ($file === '') { + $data['is_share_mount_point'] = true; + } return $data; } } else { @@ -123,6 +126,7 @@ class Shared_Cache extends Cache { } if (isset($mountPoint)) { $data['path'] = 'files/' . $mountPoint; + $data['is_share_mount_point'] = true; } return $data; } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index d2fa425b22..2956f60838 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -87,9 +87,15 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { list($sourceDir,) = \Sabre_DAV_URLUtil::splitPath($sourcePath); list($destinationDir,) = \Sabre_DAV_URLUtil::splitPath($destinationPath); + $isShareMountPoint = false; + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath( '/' . \OCP\User::getUser() . '/files/' . $sourcePath); + if ($storage instanceof \OC\Files\Storage\Shared && !$internalPath) { + $isShareMountPoint = true; + } + // check update privileges $fs = $this->getFileView(); - if (!$fs->isUpdatable($sourcePath)) { + if (!$fs->isUpdatable($sourcePath) && !$isShareMountPoint) { throw new \Sabre_DAV_Exception_Forbidden(); } if ($sourceDir !== $destinationDir) { -- GitLab From b312d38d38c4e391765beb0aadb6bd2eafd9cb2c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Wed, 23 Apr 2014 12:59:22 +0200 Subject: [PATCH 162/187] remove hard-coded shared folder --- lib/private/share/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 4e3e261baf..4a76a010eb 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -223,7 +223,7 @@ class Share extends \OC\Share\Constants { } else { while ($row = $result->fetchRow()) { foreach ($fileTargets[$row['fileid']] as $uid => $shareData) { - $sharedPath = '/Shared' . $shareData['file_target']; + $sharedPath = $shareData['file_target']; $sharedPath .= substr($path, strlen($row['path']) -5); $sharePaths[$uid] = $sharedPath; } -- GitLab From e77d89fc4b8801ff426f3759438cae548d3efcc4 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Wed, 23 Apr 2014 14:21:09 +0200 Subject: [PATCH 163/187] Revert changes to OC_Connector_Sabre_Server --- lib/private/connector/sabre/server.php | 69 +++++++++++--------------- 1 file changed, 28 insertions(+), 41 deletions(-) diff --git a/lib/private/connector/sabre/server.php b/lib/private/connector/sabre/server.php index b09237fb3c..2660b043f4 100644 --- a/lib/private/connector/sabre/server.php +++ b/lib/private/connector/sabre/server.php @@ -28,11 +28,6 @@ */ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { - public function setObjectTree($tree) { - $this->tree = $tree; - } - - /** * @see Sabre_DAV_Server */ @@ -45,22 +40,22 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // The only two options for the depth of a propfind is 0 or 1 // if ($depth!=0) $depth = 1; - $newProperties = $this->getPropertiesForPath($uri, $requestedProperties, $depth); + $newProperties = $this->getPropertiesForPath($uri,$requestedProperties,$depth); // This is a multi-status response $this->httpResponse->sendStatus(207); - $this->httpResponse->setHeader('Content-Type', 'application/xml; charset=utf-8'); - $this->httpResponse->setHeader('Vary', 'Brief,Prefer'); + $this->httpResponse->setHeader('Content-Type','application/xml; charset=utf-8'); + $this->httpResponse->setHeader('Vary','Brief,Prefer'); // Normally this header is only needed for OPTIONS responses, however.. // iCal seems to also depend on these being set for PROPFIND. Since // this is not harmful, we'll add it. - $features = array('1', '3', 'extended-mkcol'); - foreach ($this->plugins as $plugin) { - $features = array_merge($features, $plugin->getFeatures()); + $features = array('1','3', 'extended-mkcol'); + foreach($this->plugins as $plugin) { + $features = array_merge($features,$plugin->getFeatures()); } - $this->httpResponse->setHeader('DAV', implode(', ', $features)); + $this->httpResponse->setHeader('DAV',implode(', ',$features)); $prefer = $this->getHTTPPrefer(); $minimal = $prefer['return-minimal']; @@ -72,11 +67,10 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { /** * Small helper to support PROPFIND with DEPTH_INFINITY. - * * @param string $path */ private function addPathNodesRecursively(&$nodes, $path) { - foreach ($this->tree->getChildren($path) as $childNode) { + foreach($this->tree->getChildren($path) as $childNode) { $nodes[$path . '/' . $childNode->getName()] = $childNode; if ($childNode instanceof Sabre_DAV_ICollection) $this->addPathNodesRecursively($nodes, $path . '/' . $childNode->getName()); @@ -87,7 +81,7 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // if ($depth!=0) $depth = 1; - $path = rtrim($path, '/'); + $path = rtrim($path,'/'); $returnPropertyList = array(); @@ -95,10 +89,9 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { $nodes = array( $path => $parentNode ); - if ($depth == 1 && $parentNode instanceof Sabre_DAV_ICollection) { - foreach ($this->tree->getChildren($path) as $childNode) { + if ($depth==1 && $parentNode instanceof Sabre_DAV_ICollection) { + foreach($this->tree->getChildren($path) as $childNode) $nodes[$path . '/' . $childNode->getName()] = $childNode; - } } else if ($depth == self::DEPTH_INFINITY && $parentNode instanceof Sabre_DAV_ICollection) { $this->addPathNodesRecursively($nodes, $path); } @@ -106,9 +99,9 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // If the propertyNames array is empty, it means all properties are requested. // We shouldn't actually return everything we know though, and only return a // sensible list. - $allProperties = count($propertyNames) == 0; + $allProperties = count($propertyNames)==0; - foreach ($nodes as $myPath => $node) { + foreach($nodes as $myPath=>$node) { $currentPropertyNames = $propertyNames; @@ -135,15 +128,15 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // to make certain decisions about the entry. // WebDAV dictates we should add a / and the end of href's for collections $removeRT = false; - if (!in_array('{DAV:}resourcetype', $currentPropertyNames)) { + if (!in_array('{DAV:}resourcetype',$currentPropertyNames)) { $currentPropertyNames[] = '{DAV:}resourcetype'; $removeRT = true; } - $result = $this->broadcastEvent('beforeGetProperties', array($myPath, $node, &$currentPropertyNames, &$newProperties)); + $result = $this->broadcastEvent('beforeGetProperties',array($myPath, $node, &$currentPropertyNames, &$newProperties)); // If this method explicitly returned false, we must ignore this // node as it is inaccessible. - if ($result === false) continue; + if ($result===false) continue; if (count($currentPropertyNames) > 0) { @@ -156,7 +149,7 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { // So as we loop through this list, we will only take the // properties that were actually requested and discard the // rest. - foreach ($currentPropertyNames as $k => $currentPropertyName) { + foreach($currentPropertyNames as $k=>$currentPropertyName) { if (isset($nodeProperties[$currentPropertyName])) { unset($currentPropertyNames[$k]); $newProperties[200][$currentPropertyName] = $nodeProperties[$currentPropertyName]; @@ -167,14 +160,12 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { } - foreach ($currentPropertyNames as $prop) { + foreach($currentPropertyNames as $prop) { if (isset($newProperties[200][$prop])) continue; - switch ($prop) { - case '{DAV:}getlastmodified' : - if ($node->getLastModified()) $newProperties[200][$prop] = new Sabre_DAV_Property_GetLastModified($node->getLastModified()); - break; + switch($prop) { + case '{DAV:}getlastmodified' : if ($node->getLastModified()) $newProperties[200][$prop] = new Sabre_DAV_Property_GetLastModified($node->getLastModified()); break; case '{DAV:}getcontentlength' : if ($node instanceof Sabre_DAV_IFile) { $size = $node->getSize(); @@ -195,22 +186,18 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { $newProperties[200][$prop] = $quotaInfo[1]; } break; - case '{DAV:}getetag' : - if ($node instanceof Sabre_DAV_IFile && $etag = $node->getETag()) $newProperties[200][$prop] = $etag; - break; - case '{DAV:}getcontenttype' : - if ($node instanceof Sabre_DAV_IFile && $ct = $node->getContentType()) $newProperties[200][$prop] = $ct; - break; + case '{DAV:}getetag' : if ($node instanceof Sabre_DAV_IFile && $etag = $node->getETag()) $newProperties[200][$prop] = $etag; break; + case '{DAV:}getcontenttype' : if ($node instanceof Sabre_DAV_IFile && $ct = $node->getContentType()) $newProperties[200][$prop] = $ct; break; case '{DAV:}supported-report-set' : $reports = array(); - foreach ($this->plugins as $plugin) { + foreach($this->plugins as $plugin) { $reports = array_merge($reports, $plugin->getSupportedReportSet($myPath)); } $newProperties[200][$prop] = new Sabre_DAV_Property_SupportedReportSet($reports); break; case '{DAV:}resourcetype' : $newProperties[200]['{DAV:}resourcetype'] = new Sabre_DAV_Property_ResourceType(); - foreach ($this->resourceTypeMapping as $className => $resourceType) { + foreach($this->resourceTypeMapping as $className => $resourceType) { if ($node instanceof $className) $newProperties[200]['{DAV:}resourcetype']->add($resourceType); } break; @@ -222,16 +209,16 @@ class OC_Connector_Sabre_Server extends Sabre_DAV_Server { } - $this->broadcastEvent('afterGetProperties', array(trim($myPath, '/'), &$newProperties, $node)); + $this->broadcastEvent('afterGetProperties',array(trim($myPath,'/'),&$newProperties, $node)); - $newProperties['href'] = trim($myPath, '/'); + $newProperties['href'] = trim($myPath,'/'); // Its is a WebDAV recommendation to add a trailing slash to collectionnames. // Apple's iCal also requires a trailing slash for principals (rfc 3744), though this is non-standard. - if ($myPath != '' && isset($newProperties[200]['{DAV:}resourcetype'])) { + if ($myPath!='' && isset($newProperties[200]['{DAV:}resourcetype'])) { $rt = $newProperties[200]['{DAV:}resourcetype']; if ($rt->is('{DAV:}collection') || $rt->is('{DAV:}principal')) { - $newProperties['href'] .= '/'; + $newProperties['href'] .='/'; } } -- GitLab From 4ba6f4839d40cea3360637b236eba9371fa390f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu> Date: Wed, 23 Apr 2014 15:34:04 +0200 Subject: [PATCH 164/187] fixing typos and PHPDoc --- lib/private/connector/sabre/directory.php | 6 +++--- lib/private/connector/sabre/file.php | 6 ++++++ lib/private/connector/sabre/node.php | 3 +++ lib/private/connector/sabre/objecttree.php | 10 +++++++--- lib/private/connector/sabre/quotaplugin.php | 5 +++-- 5 files changed, 22 insertions(+), 8 deletions(-) diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 5a2145c8aa..545c1f95ac 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -29,7 +29,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * Data will either be supplied as a stream resource, or in certain cases * as a string. Keep in mind that you may have to support either. * - * After succesful creation of the file, you may choose to return the ETag + * After successful creation of the file, you may choose to return the ETag * of the new file here. * * The returned ETag must be surrounded by double-quotes (The quotes should @@ -55,7 +55,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa } // for chunked upload also updating a existing file is a "createFile" - // because we create all the chunks before reasamble them to the existing file. + // because we create all the chunks before re-assemble 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 @@ -108,7 +108,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * * @param string $name * @param \OCP\Files\FileInfo $info - * @throws Sabre_DAV_Exception_FileNotFound + * @throws Sabre_DAV_Exception_NotFound * @return Sabre_DAV_INode */ public function getChild($name, $info = null) { diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index a9de41adf4..641c69dd1f 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -42,6 +42,11 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * * @param resource $data * @throws Sabre_DAV_Exception_Forbidden + * @throws OC_Connector_Sabre_Exception_UnsupportedMediaType + * @throws Sabre_DAV_Exception_BadRequest + * @throws Sabre_DAV_Exception + * @throws OC_Connector_Sabre_Exception_EntityTooLarge + * @throws Sabre_DAV_Exception_ServiceUnavailable * @return string|null */ public function put($data) { @@ -198,6 +203,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D /** * @param resource $data + * @return null|string */ private function createFileChunked($data) { diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index 55e626c4c8..eede39cba8 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -81,6 +81,8 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr /** * @brief Renames the node * @param string $name The new name + * @throws Sabre_DAV_Exception_BadRequest + * @throws Sabre_DAV_Exception_Forbidden */ public function setName($name) { @@ -138,6 +140,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr /** * @brief Updates properties on this node, * @see Sabre_DAV_IProperties::updateProperties + * @param array $properties * @return boolean */ public function updateProperties($properties) { diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index fa12285878..71a35e87ee 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -39,6 +39,7 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { * Returns the INode object for the requested path * * @param string $path + * @throws \Sabre_DAV_Exception_ServiceUnavailable * @throws \Sabre_DAV_Exception_NotFound * @return \Sabre_DAV_INode */ @@ -97,6 +98,8 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { * * @param string $sourcePath The path to the file which should be moved * @param string $destinationPath The full destination path, so not just the destination parent node + * @throws \Sabre_DAV_Exception_BadRequest + * @throws \Sabre_DAV_Exception_ServiceUnavailable * @throws \Sabre_DAV_Exception_Forbidden * @return int */ @@ -160,6 +163,7 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { * * @param string $source * @param string $destination + * @throws \Sabre_DAV_Exception_ServiceUnavailable * @return void */ public function copy($source, $destination) { @@ -173,10 +177,10 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { $this->fileView->mkdir($destination); $dh = $this->fileView->opendir($source); if (is_resource($dh)) { - while (($subnode = readdir($dh)) !== false) { + while (($subNode = readdir($dh)) !== false) { - if ($subnode == '.' || $subnode == '..') continue; - $this->copy($source . '/' . $subnode, $destination . '/' . $subnode); + if ($subNode == '.' || $subNode == '..') continue; + $this->copy($source . '/' . $subNode, $destination . '/' . $subNode); } } diff --git a/lib/private/connector/sabre/quotaplugin.php b/lib/private/connector/sabre/quotaplugin.php index 78d3172725..1e73e1645c 100644 --- a/lib/private/connector/sabre/quotaplugin.php +++ b/lib/private/connector/sabre/quotaplugin.php @@ -50,8 +50,9 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { /** * This method is called before any HTTP method and validates there is enough free space to store the file * - * @throws Sabre_DAV_Exception * @param string $uri + * @param null $data + * @throws Sabre_DAV_Exception_InsufficientStorage * @return bool */ public function checkQuota($uri, $data = null) { @@ -65,7 +66,7 @@ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { if ($req->getHeader('OC-Chunked')) { $info = OC_FileChunking::decodeName($newName); $chunkHandler = new OC_FileChunking($info); - // substract the already uploaded size to see whether + // subtract the already uploaded size to see whether // there is still enough space for the remaining chunks $length -= $chunkHandler->getCurrentSize(); } -- GitLab From c2f7848aeb194aa6bf7c3da330e2750648880c48 Mon Sep 17 00:00:00 2001 From: Robin McCorkell <rmccorkell@karoshi.org.uk> Date: Mon, 21 Apr 2014 09:35:15 +0100 Subject: [PATCH 165/187] Adjust renaming of directories, fixes #8280 Directories will not be considered to have an extension, even if a dot is found. Stop Scrutinizer being annoyed But the spaced version looked good! Stop jsHint being annoyed These code quality tools are really pestering --- apps/files/js/filelist.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 9c749bb8f3..ab2601c5fb 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -572,7 +572,8 @@ window.FileList = { input.focus(); //preselect input var len = input.val().lastIndexOf('.'); - if (len === -1) { + if ( len === -1 || + tr.data('type') === 'dir' ) { len = input.val().length; } input.selectRange(0, len); -- GitLab From ff0dab6e92f71dab31d902d2ae9a6ba87f0cea88 Mon Sep 17 00:00:00 2001 From: Volkan Gezer <volkangezer@gmail.com> Date: Thu, 24 Apr 2014 01:42:18 +0200 Subject: [PATCH 166/187] This adds one more missing untranslated text from lib/share Also displays the untrusted domain warning in English --- lib/base.php | 5 +++-- lib/private/share/share.php | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/base.php b/lib/base.php index 83f54a8e4d..0f55c1175c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -698,6 +698,7 @@ class OC { * @brief Handle the request */ public static function handleRequest() { + $l = \OC_L10N::get('lib'); // load all the classpaths from the enabled apps so they are available // in the routing files of each app OC::loadAppClassPaths(); @@ -719,8 +720,8 @@ class OC { header('HTTP/1.1 400 Bad Request'); header('Status: 400 Bad Request'); OC_Template::printErrorPage( - 'You are accessing the server from an untrusted domain.', - 'Please contact your administrator' + $l->t('You are accessing the server from an untrusted domain.'), + $l->t('Please contact your administrator') ); return; } diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 3751b035bd..fe756b5ae7 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -477,9 +477,10 @@ class Share extends \OC\Share\Constants { if ($itemType === 'file' or $itemType === 'folder') { $path = \OC\Files\Filesystem::getPath($itemSource); if (!$path) { - $message = 'Sharing ' . $itemSourceName . ' failed, because the file does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the file does not exist'; + $message_t = $l->t('Sharing %s failed, because the file does not exist', array($itemSourceName)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName), \OC_Log::ERROR); + throw new \Exception($message_t); } } -- GitLab From 435672feaa22c0fc3c8caf7f6dbaefa0edb6f5d3 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Thu, 24 Apr 2014 01:55:33 -0400 Subject: [PATCH 167/187] [tx-robot] updated from transifex --- apps/files/l10n/de.php | 1 + apps/files/l10n/de_DE.php | 3 +- apps/files/l10n/en_GB.php | 3 +- apps/files/l10n/et_EE.php | 1 + apps/files/l10n/fi_FI.php | 1 + apps/files/l10n/fr.php | 1 + apps/files/l10n/gl.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/nl.php | 1 + apps/files/l10n/pl.php | 1 + apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/tr.php | 1 + apps/files_external/l10n/et_EE.php | 5 + apps/user_ldap/l10n/et_EE.php | 1 + core/l10n/et_EE.php | 1 + l10n/ach/lib.po | 140 +++++++++++++++++++++++---- l10n/ady/lib.po | 140 +++++++++++++++++++++++---- l10n/af_ZA/lib.po | 140 +++++++++++++++++++++++---- l10n/ak/lib.po | 140 +++++++++++++++++++++++---- l10n/am_ET/lib.po | 140 +++++++++++++++++++++++---- l10n/ar/lib.po | 140 +++++++++++++++++++++++---- l10n/ast/lib.po | 142 +++++++++++++++++++++++----- l10n/az/lib.po | 140 +++++++++++++++++++++++---- l10n/be/lib.po | 140 +++++++++++++++++++++++---- l10n/bg_BG/lib.po | 140 +++++++++++++++++++++++---- l10n/bn_BD/lib.po | 140 +++++++++++++++++++++++---- l10n/bs/lib.po | 140 +++++++++++++++++++++++---- l10n/ca/lib.po | 114 ++++++++++++++++++++-- l10n/cs_CZ/lib.po | 104 +++++++++++++++++++- l10n/cs_CZ/settings.po | 10 +- l10n/cy_GB/lib.po | 140 +++++++++++++++++++++++---- l10n/da/lib.po | 140 +++++++++++++++++++++++---- l10n/de/files.po | 26 ++--- l10n/de/lib.po | 120 ++++++++++++++++++++--- l10n/de/settings.po | 8 +- l10n/de_AT/lib.po | 140 +++++++++++++++++++++++---- l10n/de_CH/lib.po | 140 +++++++++++++++++++++++---- l10n/de_DE/files.po | 26 ++--- l10n/de_DE/lib.po | 120 ++++++++++++++++++++--- l10n/de_DE/settings.po | 8 +- l10n/el/lib.po | 104 +++++++++++++++++++- l10n/en@pirate/lib.po | 140 +++++++++++++++++++++++---- l10n/en_GB/files.po | 26 ++--- l10n/en_GB/lib.po | 104 +++++++++++++++++++- l10n/en_GB/settings.po | 10 +- l10n/eo/lib.po | 140 +++++++++++++++++++++++---- l10n/es/lib.po | 142 +++++++++++++++++++++++----- l10n/es_AR/lib.po | 140 +++++++++++++++++++++++---- l10n/es_CL/lib.po | 140 +++++++++++++++++++++++---- l10n/es_CR/lib.po | 102 +++++++++++++++++++- l10n/es_MX/lib.po | 140 +++++++++++++++++++++++---- l10n/et_EE/core.po | 32 +++---- l10n/et_EE/files.po | 24 ++--- l10n/et_EE/files_external.po | 26 ++--- l10n/et_EE/lib.po | 142 +++++++++++++++++++++++----- l10n/et_EE/settings.po | 14 +-- l10n/et_EE/user_ldap.po | 30 +++--- l10n/eu/lib.po | 140 +++++++++++++++++++++++---- l10n/eu_ES/lib.po | 140 +++++++++++++++++++++++---- l10n/fa/lib.po | 140 +++++++++++++++++++++++---- l10n/fi_FI/files.po | 24 ++--- l10n/fi_FI/lib.po | 142 +++++++++++++++++++++++----- l10n/fi_FI/settings.po | 14 +-- l10n/fr/files.po | 24 ++--- l10n/fr/lib.po | 142 +++++++++++++++++++++++----- l10n/fr/settings.po | 8 +- l10n/fr_CA/lib.po | 140 +++++++++++++++++++++++---- l10n/gl/files.po | 24 ++--- l10n/gl/lib.po | 112 ++++++++++++++++++++-- l10n/gl/settings.po | 8 +- l10n/he/lib.po | 140 +++++++++++++++++++++++---- l10n/hi/lib.po | 140 +++++++++++++++++++++++---- l10n/hr/lib.po | 140 +++++++++++++++++++++++---- l10n/hu_HU/lib.po | 140 +++++++++++++++++++++++---- l10n/hy/lib.po | 140 +++++++++++++++++++++++---- l10n/ia/lib.po | 140 +++++++++++++++++++++++---- l10n/id/lib.po | 140 +++++++++++++++++++++++---- l10n/is/lib.po | 140 +++++++++++++++++++++++---- l10n/it/files.po | 25 ++--- l10n/it/lib.po | 142 +++++++++++++++++++++++----- l10n/it/settings.po | 10 +- l10n/ja/lib.po | 140 +++++++++++++++++++++++---- l10n/jv/lib.po | 140 +++++++++++++++++++++++---- l10n/ka_GE/lib.po | 140 +++++++++++++++++++++++---- l10n/km/lib.po | 142 +++++++++++++++++++++++----- l10n/kn/lib.po | 140 +++++++++++++++++++++++---- l10n/ko/lib.po | 140 +++++++++++++++++++++++---- l10n/ku_IQ/lib.po | 140 +++++++++++++++++++++++---- l10n/lb/lib.po | 140 +++++++++++++++++++++++---- l10n/lt_LT/lib.po | 140 +++++++++++++++++++++++---- l10n/lv/lib.po | 140 +++++++++++++++++++++++---- l10n/mk/lib.po | 140 +++++++++++++++++++++++---- l10n/ml/lib.po | 140 +++++++++++++++++++++++---- l10n/ml_IN/lib.po | 140 +++++++++++++++++++++++---- l10n/mn/lib.po | 140 +++++++++++++++++++++++---- l10n/ms_MY/lib.po | 140 +++++++++++++++++++++++---- l10n/my_MM/lib.po | 140 +++++++++++++++++++++++---- l10n/nb_NO/lib.po | 140 +++++++++++++++++++++++---- l10n/nds/lib.po | 140 +++++++++++++++++++++++---- l10n/ne/lib.po | 140 +++++++++++++++++++++++---- l10n/nl/files.po | 24 ++--- l10n/nl/lib.po | 142 +++++++++++++++++++++++----- l10n/nl/settings.po | 8 +- l10n/nn_NO/lib.po | 140 +++++++++++++++++++++++---- l10n/nqo/lib.po | 140 +++++++++++++++++++++++---- l10n/oc/lib.po | 140 +++++++++++++++++++++++---- l10n/or_IN/lib.po | 102 +++++++++++++++++++- l10n/pa/lib.po | 140 +++++++++++++++++++++++---- l10n/pl/files.po | 24 ++--- l10n/pl/lib.po | 142 +++++++++++++++++++++++----- l10n/pl/settings.po | 8 +- l10n/pt_BR/files.po | 24 ++--- l10n/pt_BR/lib.po | 104 +++++++++++++++++++- l10n/pt_BR/settings.po | 8 +- l10n/pt_PT/lib.po | 140 +++++++++++++++++++++++---- l10n/ro/lib.po | 140 +++++++++++++++++++++++---- l10n/ru/lib.po | 140 +++++++++++++++++++++++---- l10n/si_LK/lib.po | 140 +++++++++++++++++++++++---- l10n/sk/lib.po | 140 +++++++++++++++++++++++---- l10n/sk_SK/lib.po | 140 +++++++++++++++++++++++---- l10n/sl/lib.po | 104 +++++++++++++++++++- l10n/sq/lib.po | 140 +++++++++++++++++++++++---- l10n/sr/lib.po | 140 +++++++++++++++++++++++---- l10n/sr@latin/lib.po | 140 +++++++++++++++++++++++---- l10n/su/lib.po | 140 +++++++++++++++++++++++---- l10n/sv/lib.po | 142 +++++++++++++++++++++++----- l10n/sw_KE/lib.po | 140 +++++++++++++++++++++++---- l10n/ta_LK/lib.po | 140 +++++++++++++++++++++++---- l10n/te/lib.po | 140 +++++++++++++++++++++++---- l10n/templates/core.pot | 26 ++--- l10n/templates/files.pot | 18 ++-- 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 | 100 +++++++++++++++++++- l10n/templates/private.pot | 100 +++++++++++++++++++- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 24 ++--- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/lib.po | 140 +++++++++++++++++++++++---- l10n/tr/core.po | 28 +++--- l10n/tr/files.po | 24 ++--- l10n/tr/lib.po | 118 +++++++++++++++++++++-- l10n/tr/settings.po | 12 +-- l10n/tzm/lib.po | 140 +++++++++++++++++++++++---- l10n/ug/lib.po | 140 +++++++++++++++++++++++---- l10n/uk/lib.po | 140 +++++++++++++++++++++++---- l10n/ur/lib.po | 140 +++++++++++++++++++++++---- l10n/ur_PK/lib.po | 140 +++++++++++++++++++++++---- l10n/uz/lib.po | 140 +++++++++++++++++++++++---- l10n/vi/lib.po | 140 +++++++++++++++++++++++---- l10n/zh_CN/lib.po | 140 +++++++++++++++++++++++---- l10n/zh_HK/lib.po | 140 +++++++++++++++++++++++---- l10n/zh_TW/lib.po | 140 +++++++++++++++++++++++---- lib/l10n/et_EE.php | 1 + lib/l10n/tr.php | 14 +-- settings/l10n/cs_CZ.php | 2 + settings/l10n/de.php | 1 + settings/l10n/de_DE.php | 1 + settings/l10n/en_GB.php | 3 +- settings/l10n/et_EE.php | 4 + settings/l10n/fi_FI.php | 4 + settings/l10n/fr.php | 1 + settings/l10n/gl.php | 1 + settings/l10n/it.php | 1 + settings/l10n/nl.php | 1 + settings/l10n/pl.php | 1 + settings/l10n/pt_BR.php | 1 + settings/l10n/tr.php | 5 +- 171 files changed, 12284 insertions(+), 2247 deletions(-) diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index c1f5f3a936..f1ef552b47 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", +"Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 83d8c253ee..6c4830081f 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", +"Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", @@ -75,7 +76,7 @@ $TRANSLATIONS = array( "New" => "Neu", "New text file" => "Neue Textdatei", "Text file" => "Textdatei", -"New folder" => "Neues Ordner", +"New folder" => "Neuer Ordner", "Folder" => "Ordner", "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index d57f943453..2084b61c84 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modified", "Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", +"Upload (max. %s)" => "Upload (max. %s)", "File handling" => "File handling", "Maximum upload size" => "Maximum upload size", "max. possible: " => "max. possible: ", @@ -87,6 +88,6 @@ $TRANSLATIONS = array( "Upload too large" => "Upload too large", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "The files you are trying to upload exceed the maximum size for file uploads on this server.", "Files are being scanned, please wait." => "Files are being scanned, please wait.", -"Current scanning" => "Current scanning" +"Current scanning" => "Currently scanning" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index ec7c4af85b..ed16e38ac7 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Muudetud", "Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", +"Upload (max. %s)" => "Üleslaadimine (max. %s)", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", "max. possible: " => "maks. võimalik: ", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 530a68e536..97216ff869 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -60,6 +60,7 @@ $TRANSLATIONS = array( "Modified" => "Muokattu", "Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", "%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", +"Upload (max. %s)" => "Lähetys (enintään %s)", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " => "suurin mahdollinen:", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 0ae5180b66..356ce574ed 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modifié", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", +"Upload (max. %s)" => "Envoi (max. %s)", "File handling" => "Gestion des fichiers", "Maximum upload size" => "Taille max. d'envoi", "max. possible: " => "Max. possible :", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 18e0481a2a..152bdfd7fd 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", +"Upload (max. %s)" => "Envío (máx. %s)", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", "max. possible: " => "máx. posíbel: ", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 64abf0bfed..0ec7e34f7a 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificato", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", +"Upload (max. %s)" => "Carica (massimo %s)", "File handling" => "Gestione file", "Maximum upload size" => "Dimensione massima upload", "max. possible: " => "numero mass.: ", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 779a651602..746c5b9c00 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Aangepast", "Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", +"Upload (max. %s)" => "Upload (max. %s)", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", "max. possible: " => "max. mogelijk: ", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 5a5b057e63..d0d05564d1 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modyfikacja", "Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", +"Upload (max. %s)" => "Wysyłka (max. %s)", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", "max. possible: " => "maks. możliwy:", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 35d2d55170..d0b741196d 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", +"Upload (max. %s)" => "Envio (max. %s)", "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 46f5af3071..586c81072a 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Değiştirilme", "Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", +"Upload (max. %s)" => "Yükle (azami: %s)", "File handling" => "Dosya işlemleri", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 0589d9fd51..4da749b155 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna.", "Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel", "Saved" => "Salvestatud", +"<b>Note:</b> " => "<b>Märkus:</b>", +" and " => "ja", +"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Märkus:</b> cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi.", +"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Märkus:</b> FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.", +"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b>Märkus:</b> \"%s\" pole paigaldatud. Hoidla %s ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata vajalik tugi.", "External Storage" => "Väline salvestuskoht", "Folder name" => "Kausta nimi", "External storage" => "Väline andmehoidla", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index f52449bda8..11941bf4ac 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Varuserveri (replika) port", "Disable Main Server" => "Ära kasuta peaserverit", "Only connect to the replica server." => "Ühendu ainult replitseeriva serveriga.", +"Case insensitive LDAP server (Windows)" => "Tõusutundetu LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine välja.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Pole soovitatav, kasuta seda ainult testimiseks! Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse.", "Cache Time-To-Live" => "Puhvri iga", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index f0e05e571e..4807bc0414 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} failikonflikt","{count} failikonflikti"), "One file conflict" => "Üks failikonflikt", "New Files" => "Uued failid", +"Already existing files" => "Juba olemasolevad failid", "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", diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index 3e9a97a32f..b058b62142 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index 07c60bce62..ec381a0d66 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 47d21e1c5b..1f22386958 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Gebruikers" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po index 1404a2e7a6..496d2a7f1d 100644 --- a/l10n/ak/lib.po +++ b/l10n/ak/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po index 2412812c9c..4f1c550a53 100644 --- a/l10n/am_ET/lib.po +++ b/l10n/am_ET/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 1ac427fb61..92ff968644 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "المستخدمين" msgid "Admin" msgstr "المدير" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "خطا في ترقية \"%s\"." @@ -75,7 +75,7 @@ msgstr "تحميل ملفات ZIP متوقف" msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "العودة الى الملفات" @@ -149,15 +149,15 @@ msgstr "لا يمكن إنشاء مجلد التطبيق. يرجى تعديل ا msgid "Application is not enabled" msgstr "التطبيق غير مفعّل" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "المستخدم غير معروف" @@ -286,16 +286,114 @@ msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>. msgid "%s shared »%s« with you" msgstr "%s شارك »%s« معك" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "تعذر العثور على المجلد \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "منذ ثواني" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -305,7 +403,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -315,15 +413,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "اليوم" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "يوم أمس" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -333,11 +431,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "الشهر الماضي" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -347,28 +445,28 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "السنةالماضية" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "سنة مضت" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index 7608549ac6..cf11aa5ced 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 09:20+0000\n" -"Last-Translator: Tornes Llume <l.lumex03.tornes@gmail.com>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,7 +49,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Fallu al anovar \"%s\"." @@ -74,7 +74,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "L'aplicación nun ta habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nun pudo alcontrase la estaya \"%s.\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "fai segundos" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "fai %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "fai %n hores" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "güei" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ayeri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "fai %n díes" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes caberu" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "fai %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "añu caberu" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "fai años" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 7c931cb158..4ca3ad7e7c 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 3a42b36b15..1ec5525d65 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,16 +284,114 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Секунд таму" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -301,7 +399,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -309,15 +407,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Сёння" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "Ўчора" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -325,11 +423,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "У мінулым месяцы" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -337,28 +435,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "У мінулым годзе" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Гадоў таму" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 2f128367a9..04985c0716 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Потребители" msgid "Admin" msgstr "Админ" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "Изтеглянето като ZIP е изключено." msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад към файловете" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Приложението не е включено." -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Възникна проблем с идентификацията" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ключът е изтекъл, моля презаредете страницата" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "Моля направете повторна справка с <a href=' msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Невъзможно откриване на категорията \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "преди секунди" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "днес" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "последният месец" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "последната година" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "последните години" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index df86a5c8f8..6287668a6c 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "ব্যবহারকারী" msgid "Admin" msgstr "প্রশাসন" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" msgid "Files need to be downloaded one by one." msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ফাইলে ফিরে চল" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "অনুমোদন ঘটিত সমস্যা" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "আজ" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "গতকাল" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "গত মাস" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "গত বছর" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "বছর পূর্বে" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 9b1d2f5cc7..5899b4927c 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 96a2ef9cb8..7ae5234994 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-15 09:40+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Usuaris" msgid "Admin" msgstr "Administració" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ha fallat l'actualització \"%s\"." @@ -74,7 +74,7 @@ msgstr "La baixada en ZIP està desactivada." msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Torna a Fitxers" @@ -148,15 +148,15 @@ msgstr "No es pot crear la carpeta de l'aplicació. Arregleu els permisos. %s" msgid "Application is not enabled" msgstr "L'aplicació no està habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error d'autenticació" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuari desconegut" @@ -285,6 +285,104 @@ msgstr "Comproveu les <a href='%s'>guies d'instal·lació</a>." msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index a6d2b528e1..d0af536414 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" -"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -290,6 +290,104 @@ msgstr "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>." msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 711ef3ddcc..6b6765065a 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 20:00+0000\n" +"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\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" @@ -94,7 +94,7 @@ msgstr "Nelze přidat skupinu" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Soubory úspěšně dešifrovány" #: ajax/decryptall.php:33 msgid "" @@ -529,7 +529,7 @@ msgstr "Povolit e-mailová upozornění" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index f58729ece0..d9647cd3f3 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Defnyddwyr" msgid "Admin" msgstr "Gweinyddu" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Mae llwytho ZIP wedi ei ddiffodd." msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Nôl i Ffeiliau" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Nid yw'r pecyn wedi'i alluogi" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Gwall dilysu" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,16 +284,114 @@ msgstr "Gwiriwch y <a href='%s'>canllawiau gosod</a> eto." msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Methu canfod categori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "eiliad yn ôl" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -301,7 +399,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -309,15 +407,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "heddiw" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ddoe" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -325,11 +423,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mis diwethaf" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -337,28 +435,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "y llynedd" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "blwyddyn yn ôl" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 6bef7060df..d669abb752 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Brugere" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" @@ -77,7 +77,7 @@ msgstr "ZIP-download er slået fra." msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tilbage til Filer" @@ -151,15 +151,15 @@ msgstr "Kan ikke oprette app-mappe. Ret tilladelser. %s" msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Adgangsfejl" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Adgang er udløbet. Genindlæs siden." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Ukendt bruger" @@ -288,73 +288,171 @@ msgstr "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunne ikke finde kategorien \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder siden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "sidste måned" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "sidste år" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år siden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de/files.po b/l10n/de/files.po index 973943e7a2..63e23b8bf2 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -6,7 +6,7 @@ # I Robot, 2013 # I Robot, 2014 # Marcel Kühlhorn <tux93@opensuse.org>, 2013 -# Mario Siegmann <mario_siegmann@web.de>, 2013 +# Mario Siegmann <mario_siegmann@web.de>, 2013-2014 # ninov <ninovdl@ymail.com>, 2013 # Pwnicorn <pwnicorndev@gmail.com>, 2013 # stefanniedermann <stefan.niedermann@googlemail.com>, 2014 @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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" @@ -185,7 +185,7 @@ msgstr "Die URL darf nicht leer sein" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" @@ -221,35 +221,35 @@ msgstr "Fehler beim Verschieben der Datei" msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" @@ -316,7 +316,7 @@ msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Hochladen (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 6325eb843c..fb985f57f2 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 20:56+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -54,7 +54,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -79,7 +79,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -153,15 +153,15 @@ msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passe die Berech msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Fehler bei der Anmeldung" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte lade die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unbekannter Benutzer" @@ -290,6 +290,104 @@ msgstr "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>." msgid "%s shared »%s« with you" msgstr "%s teilte »%s« mit Dir" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -343,20 +441,20 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Dieser Benutzername existiert bereits" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 573b92899f..70f58f382a 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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" @@ -530,7 +530,7 @@ msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index bc182373db..dda2e8bf4e 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index b39979b365..24f9b93858 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -77,7 +77,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -151,15 +151,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -288,73 +288,171 @@ msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Die Kategorie «%s» konnte nicht gefunden werden." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Gerade eben" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "Vor %n Minuten" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Vor %n Stunden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Heute" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "Gestern" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "Vor %n Tagen" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "Letzten Monat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Vor %n Monaten" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "Letztes Jahr" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 843016e5ae..ccb5acaeff 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -8,7 +8,7 @@ # I Robot, 2013 # I Robot, 2014 # Marcel Kühlhorn <tux93@opensuse.org>, 2013 -# Mario Siegmann <mario_siegmann@web.de>, 2013 +# Mario Siegmann <mario_siegmann@web.de>, 2013-2014 # stefanniedermann <stefan.niedermann@googlemail.com>, 2014 # traductor, 2013 # noxin <transifex.com@davidmainzer.com>, 2013 @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 13:50+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" @@ -188,7 +188,7 @@ msgstr "Die URL darf nicht leer sein" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" @@ -224,35 +224,35 @@ msgstr "Fehler beim Verschieben der Datei" msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" @@ -319,7 +319,7 @@ msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Hochladen (max. %s)" #: templates/admin.php:4 msgid "File handling" @@ -367,7 +367,7 @@ msgstr "Textdatei" #: templates/index.php:12 msgid "New folder" -msgstr "Neues Ordner" +msgstr "Neuer Ordner" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a33e633646..4447942d67 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 20:58+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -54,7 +54,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -79,7 +79,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -153,15 +153,15 @@ msgstr "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überp msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unbekannter Benutzer" @@ -290,6 +290,104 @@ msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." msgid "%s shared »%s« with you" msgstr "%s hat »%s« mit Ihnen geteilt" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -343,20 +441,20 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Der Benutzername existiert bereits" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e769fdb0a0..6d79de897e 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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" @@ -530,7 +530,7 @@ msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 35ac8cf393..edea3a7e21 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 21:50+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης <yannanth@gmail.com>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -289,6 +289,104 @@ msgstr "Ελέγξτε ξανά τις <a href='%s'>οδηγίες εγκατά msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index ac875a524d..5a7e2c1746 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 8d455ef98f..862e41169c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\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" @@ -178,7 +178,7 @@ msgstr "URL cannot be empty" msgid "In the home folder 'Shared' is a reserved filename" msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} already exists" @@ -214,35 +214,35 @@ msgstr "Error moving file" msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pending" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Error deleting file." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" @@ -309,7 +309,7 @@ msgstr "%s could not be renamed" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Upload (max. %s)" #: templates/admin.php:4 msgid "File handling" @@ -407,4 +407,4 @@ msgstr "Files are being scanned, please wait." #: templates/index.php:106 msgid "Current scanning" -msgstr "Current scanning" +msgstr "Currently scanning" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 0cc06ec600..0d6696a617 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 09:37+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -285,6 +285,104 @@ msgstr "Please double check the <a href='%s'>installation guides</a>." msgid "%s shared »%s« with you" msgstr "%s shared \"%s\" with you" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index c09c1b3e9c..6b178f05eb 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\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" @@ -301,7 +301,7 @@ msgstr "Warning: Home directory for user \"{user}\" already exists" #: personal.php:48 personal.php:49 msgid "__language_name__" -msgstr "__language_name__" +msgstr "English (British English)" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" @@ -522,7 +522,7 @@ msgstr "Allow mail notification" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Allow users to send mail notification for shared files" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index ac9e0fc8f4..3943f0c74c 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Uzantoj" msgid "Admin" msgstr "Administranto" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "ZIP-elŝuto estas malkapabligita." msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Reen al la dosieroj" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "La aplikaĵo ne estas kapabligita" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Aŭtentiga eraro" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "Bonvolu duoble kontroli la <a href='%s'>gvidilon por instalo</a>." msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ne troviĝis kategorio “%s”" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "antaŭ %n minutoj" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "antaŭ %n horoj" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hodiaŭ" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hieraŭ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "antaŭ %n tagoj" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "lastamonate" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "antaŭ %n monatoj" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "lastajare" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "jaroj antaŭe" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 91209fc57d..aa43afb515 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 15:50+0000\n" -"Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "Administración" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." @@ -80,7 +80,7 @@ msgstr "La descarga en ZIP está desactivada." msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" @@ -154,15 +154,15 @@ msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error de autenticación" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recarga la página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuario desconocido" @@ -291,73 +291,171 @@ msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a msgid "%s shared »%s« with you" msgstr "%s ha compatido »%s« contigo" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "No puede encontrar la categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "hace segundos" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoy" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ayer" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes pasado" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "año pasado" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "hace años" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Solo los siguientes caracteres están permitidos en un nombre de usuario: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "El nombre de usuario ya está en uso" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index fc41e7c9c9..c751c3e6cc 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "Administración" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." @@ -75,7 +75,7 @@ msgstr "La descarga en ZIP está desactivada." msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" @@ -149,15 +149,15 @@ msgstr "No se puede crear el directorio para la app. Corregí los permisos. %s" msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error al autenticar" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recargá la página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a msgid "%s shared »%s« with you" msgstr "%s compartió \"%s\" con vos" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "No fue posible encontrar la categoría \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundos atrás" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoy" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ayer" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "el mes pasado" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "el año pasado" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "años atrás" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index ab7e0025c7..26fc694daa 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundos antes" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoy" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ayer" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes anterior" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "último año" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "años anteriores" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/es_CR/lib.po b/l10n/es_CR/lib.po index e4276b217e..659f584b65 100644 --- a/l10n/es_CR/lib.po +++ b/l10n/es_CR/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -284,6 +284,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 3e6f085cf4..db71e813cd 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "Administración" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." @@ -73,7 +73,7 @@ msgstr "La descarga en ZIP está desactivada." msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" @@ -147,15 +147,15 @@ msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error de autenticación" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recarga la página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a msgid "%s shared »%s« with you" msgstr "%s ha compartido »%s« contigo" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "No puede encontrar la categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "hace segundos" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoy" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ayer" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes pasado" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "año pasado" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "hace años" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 568a8dd44a..5e4ce1b68e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:13+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -136,59 +136,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Seaded" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "täna" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "eile" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "aastat tagasi" @@ -232,7 +232,7 @@ msgstr "Uued failid" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Juba olemasolevad failid" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 6dd46cb0f2..9780dd446f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:23+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -179,7 +179,7 @@ msgstr "URL ei saa olla tühi" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" @@ -215,35 +215,35 @@ msgstr "Viga faili eemaldamisel" msgid "Error" msgstr "Viga" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Viga faili kustutamisel." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" @@ -310,7 +310,7 @@ msgstr "%s ümbernimetamine ebaõnnestus" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Üleslaadimine (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 094d7f16ab..6c6de1a437 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:43+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -43,34 +43,34 @@ msgstr "Viga Google Drive'i salvestusruumi seadistamisel" msgid "Saved" msgstr "Salvestatud" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " -msgstr "" +msgstr "<b>Märkus:</b>" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "ja" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Märkus:</b> cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Märkus:</b> FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "<b>Märkus:</b> \"%s\" pole paigaldatud. Hoidla %s ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata vajalik tugi." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 7602de2d16..f6146366c6 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Kasutajad" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." @@ -75,7 +75,7 @@ msgstr "ZIP-ina allalaadimine on välja lülitatud." msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tagasi failide juurde" @@ -149,15 +149,15 @@ msgstr "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s" msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentimise viga" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Kontrollkood aegus. Paelun lae leht uuesti." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Tundmatu kasutaja" @@ -286,73 +286,171 @@ msgstr "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>." msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ei leia kategooriat \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundit tagasi" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutit tagasi" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n tundi tagasi" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "täna" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "eile" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n päeva tagasi" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "viimasel kuul" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n kuud tagasi" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "viimasel aastal" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "aastat tagasi" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Kasutajanimes on lubatud ainult järgnevad tähemärgid: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Kasutajanimi on juba kasutuses" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 8aa434c982..188aaff2c6 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:15+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -88,17 +88,17 @@ msgstr "Keela grupi lisamine" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Failide krüpteerimine õnnestus" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Ei suutnud faile dekrüpteerida, palun kontrolli oma owncloud.log-i või küsi nõu administraatorilt" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Ei suutnud failde dekrüpteerida, kontrolli parooli ja proovi uuesti" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -523,7 +523,7 @@ msgstr "Luba teavitused e-postiga" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 71a4cf2bf2..9735b87dbe 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:17+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -88,43 +88,43 @@ msgstr "Korras" msgid "Error" msgstr "Viga" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Seadistus on korras" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Seadistus on vigane" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Seadistus on puudulik" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Vali grupid" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Vali objekti klassid" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Vali atribuudid" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "Ühenduse testimine õnnestus" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "Ühenduse testimine ebaõnnestus" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Kinnita kustutamine" @@ -146,7 +146,7 @@ msgstr[1] "%s kasutajat leitud" msgid "Invalid Host" msgstr "Vigane server" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "Ei suuda leida soovitud funktsioonaalsust" @@ -338,7 +338,7 @@ msgstr "Ühendu ainult replitseeriva serveriga." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Tõusutundetu LDAP server (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 6c379c4862..e2eee4be45 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Erabiltzaileak" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." @@ -75,7 +75,7 @@ msgstr "ZIP deskarga ez dago gaituta." msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Itzuli fitxategietara" @@ -149,15 +149,15 @@ msgstr "Ezin izan da aplikazioaren karpeta sortu. Mesdez konpondu baimenak. %s" msgid "Application is not enabled" msgstr "Aplikazioa ez dago gaituta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentifikazio errorea" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tokena iraungitu da. Mesedez birkargatu orria." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Mesedez begiratu <a href='%s'>instalazio gidak</a>." msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ezin da \"%s\" kategoria aurkitu" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "gaur" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "atzo" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "joan den hilabetean" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "joan den urtean" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "urte" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Erabiltzaile izena dagoeneko erabiltzen ari da" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 73af4f395d..2fbdf0eae6 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 2f2c29cb56..8a60e81be0 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "کاربران" msgid "Admin" msgstr "مدیر" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "دانلود به صورت فشرده غیر فعال است" msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "بازگشت به فایل ها" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "برنامه فعال نشده است" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,69 +285,167 @@ msgstr "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بر msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "دسته بندی %s یافت نشد" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "ثانیهها پیش" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "امروز" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "دیروز" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ماه قبل" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "سال قبل" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "سالهای قبل" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 6cf56c8282..df5e50b673 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\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" @@ -180,7 +180,7 @@ msgstr "Osoite ei voi olla tyhjä" msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" @@ -216,35 +216,35 @@ msgstr "Virhe tiedostoa siirrettäessä" msgid "Error" msgstr "Virhe" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Virhe tiedostoa poistaessa." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" @@ -311,7 +311,7 @@ msgstr "kohteen %s nimeäminen uudelleen epäonnistui" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Lähetys (enintään %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 68427d6e24..5f02f3c05f 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 12:20+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Käyttäjät" msgid "Admin" msgstr "Ylläpitäjä" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." @@ -74,7 +74,7 @@ msgstr "ZIP-lataus on poistettu käytöstä." msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Takaisin tiedostoihin" @@ -148,15 +148,15 @@ msgstr "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s" msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Tunnistautumisvirhe" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Valtuutus vanheni. Lataa sivu uudelleen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Tuntematon käyttäjä" @@ -285,73 +285,171 @@ msgstr "Lue tarkasti <a href='%s'>asennusohjeet</a>." msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Luokkaa \"%s\" ei löytynyt" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekuntia sitten" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "tänään" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "eilen" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "viime kuussa" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "viime vuonna" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "vuotta sitten" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Vain seuraavat merkit ovat sallittuja käyttäjätunnuksessa: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Anna kelvollinen käyttäjätunnus" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Anna kelvollinen salasana" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Käyttäjätunnus on jo käytössä" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index a29b87e036..ad7595a433 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\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" @@ -356,7 +356,7 @@ msgstr "Turvallisuusvaroitus" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä." #: templates/admin.php:64 msgid "" @@ -522,7 +522,7 @@ msgstr "Salli sähköposti-ilmoitukset" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" #: templates/admin.php:261 msgid "Security" @@ -743,7 +743,7 @@ msgstr "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa." #: templates/personal.php:100 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi." #: templates/personal.php:104 msgid "Cancel" @@ -778,7 +778,7 @@ msgstr "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostoje #: templates/personal.php:157 msgid "Log-in password" -msgstr "" +msgstr "Kirjautumissalasana" #: templates/personal.php:162 msgid "Decrypt all Files" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 84a033faa6..3b84f9ce30 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+0000\n" +"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\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" @@ -182,7 +182,7 @@ msgstr "L'URL ne peut pas être vide" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" @@ -218,35 +218,35 @@ msgstr "Erreur lors du déplacement du fichier" msgid "Error" msgstr "Erreur" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "En attente" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Erreur pendant la suppression du fichier." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" @@ -313,7 +313,7 @@ msgstr "%s ne peut être renommé" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envoi (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index f556076b57..1ad2227f67 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 11:50+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Utilisateurs" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." @@ -77,7 +77,7 @@ msgstr "Téléchargement ZIP désactivé." msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Retour aux Fichiers" @@ -151,15 +151,15 @@ msgstr "Impossible de créer le dossier de l'application. Corrigez les droits d' msgid "Application is not enabled" msgstr "L'application n'est pas activée" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erreur d'authentification" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "La session a expiré. Veuillez recharger la page." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utilisateur inconnu" @@ -288,73 +288,171 @@ msgstr "Veuillez vous référer au <a href='%s'>guide d'installation</a>." msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossible de trouver la catégorie \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "il y a quelques secondes" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "il y a %n minutes" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Il y a %n heures" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "aujourd'hui" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hier" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "il y a %n jours" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "le mois dernier" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Il y a %n mois" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "l'année dernière" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "il y a plusieurs années" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Seuls les caractères suivants sont autorisés dans un nom d'utilisateur : \"a-z\", \"A-Z\", \"0-9\", et \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Le nom d'utilisateur est déjà utilisé" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ab5c1b50a5..42cc8cb0a4 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+0000\n" +"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\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" @@ -532,7 +532,7 @@ msgstr "Autoriser les notifications par couriel" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index e00186eb0c..09727cd39d 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index a7930014cc..a34fba6ea6 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:24+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\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" @@ -179,7 +179,7 @@ msgstr "O URL non pode quedar en branco." msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" @@ -215,35 +215,35 @@ msgstr "Produciuse un erro ao mover o ficheiro" msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Produciuse un erro ao eliminar o ficheiro." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" @@ -310,7 +310,7 @@ msgstr "%s non pode cambiar de nome" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envío (máx. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 85c9c04058..02a26c87e1 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 11:20+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -75,7 +75,7 @@ msgstr "As descargas ZIP están desactivadas." msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Volver aos ficheiros" @@ -149,15 +149,15 @@ msgstr "Non é posíbel crear o cartafol de aplicativos. Corrixa os permisos. %s msgid "Application is not enabled" msgstr "O aplicativo non está activado" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Produciuse un erro de autenticación" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Testemuña caducada. Recargue a páxina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuario descoñecido" @@ -286,6 +286,104 @@ msgstr "Volva comprobar as <a href='%s'>guías de instalación</a>" msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 03e60c26d9..4e595e7c9b 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:24+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\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" @@ -523,7 +523,7 @@ msgstr "Permitir o envío de notificacións por correo" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 98e02d7040..6a707e23dd 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "משתמשים" msgid "Admin" msgstr "מנהל" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "הורדת ZIP כבויה" msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "חזרה לקבצים" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "יישומים אינם מופעלים" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "שגיאת הזדהות" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "פג תוקף. נא לטעון שוב את הדף." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "נא לעיין שוב ב<a href='%s'>מדריכי ההתקנה</a>." msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "לא ניתן למצוא את הקטגוריה „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "שניות" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "לפני %n דקות" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "לפני %n שעות" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "היום" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "אתמול" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "לפני %n ימים" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "חודש שעבר" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "לפני %n חודשים" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "שנה שעברה" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "שנים" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "יש לספק שם משתמש תקני" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 955a511e0f..dac38b91b2 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "उपयोगकर्ता" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 27e9309543..c89d48b91f 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Korisnici" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Greška kod autorizacije" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundi prije" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "danas" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "jučer" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "prošli mjesec" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "prošlu godinu" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "godina" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 858b0c42ef..2b52cf384d 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -51,7 +51,7 @@ msgstr "Felhasználók" msgid "Admin" msgstr "Adminsztráció" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." @@ -76,7 +76,7 @@ msgstr "A ZIP-letöltés nincs engedélyezve." msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" @@ -150,15 +150,15 @@ msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Azonosítási hiba" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "A token lejárt. Frissítse az oldalt." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -287,73 +287,171 @@ msgstr "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmu msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ez a kategória nem található: \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "pár másodperce" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n perccel ezelőtt" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ma" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "tegnap" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "múlt hónapban" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "tavaly" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "több éve" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Ez a bejelentkezési név már foglalt" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index d62bc683e0..3b3b5ffa6b 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index c6eea0497d..d0be345d97 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Usatores" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index edf2ae28a7..18118cf1fe 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Pengguna" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Gagal memperbarui \"%s\"." @@ -73,7 +73,7 @@ msgstr "Pengunduhan ZIP dimatikan." msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Kembali ke Berkas" @@ -147,15 +147,15 @@ msgstr "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s" msgid "Application is not enabled" msgstr "Aplikasi tidak diaktifkan" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Galat saat otentikasi" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "Silakan periksa ulang <a href='%s'>panduan instalasi</a>." msgid "%s shared »%s« with you" msgstr "%s membagikan »%s« dengan anda" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Tidak menemukan kategori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hari ini" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "kemarin" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "bulan kemarin" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "tahun kemarin" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "beberapa tahun lalu" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 24dba8ecb2..2bc042e6fe 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Notendur" msgid "Admin" msgstr "Stjórnun" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Slökkt á ZIP niðurhali." msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Aftur í skrár" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Forrit ekki virkt" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Villa við auðkenningu" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Fann ekki flokkinn \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sek." -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "í dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "í gær" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "síðasta mánuði" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "síðasta ári" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "einhverjum árum" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/it/files.po b/l10n/it/files.po index 487dde5010..f7579891b1 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# idetao <marcxosm@gmail.com>, 2014 # Paolo Velati <paolo.velati@gmail.com>, 2013-2014 # Vincenzo Reale <vinx.reale@gmail.com>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 23:33+0000\n" +"Last-Translator: idetao <marcxosm@gmail.com>\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" @@ -179,7 +180,7 @@ msgstr "L'URL non può essere vuoto." msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} esiste già" @@ -215,35 +216,35 @@ msgstr "Errore durante lo spostamento del file" msgid "Error" msgstr "Errore" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "In corso" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Errore durante l'eliminazione del file." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" @@ -310,7 +311,7 @@ msgstr "%s non può essere rinominato" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Carica (massimo %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 7de4b24e4d..61cf71193a 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 22:37+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Utenti" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." @@ -77,7 +77,7 @@ msgstr "Lo scaricamento in formato ZIP è stato disabilitato." msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Torna ai file" @@ -151,15 +151,15 @@ msgstr "Impossibile creare la cartella dell'applicazione. Correggi i permessi. % msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Errore di autenticazione" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token scaduto. Ricarica la pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utente sconosciuto" @@ -288,73 +288,171 @@ msgstr "Leggi attentamente le <a href='%s'>guide d'installazione</a>." msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossibile trovare la categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "secondi fa" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "oggi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ieri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mese scorso" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "anno scorso" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anni fa" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Solo i seguenti caratteri sono ammessi in un nome utente: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Il nome utente è già utilizzato" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 13bbcdee32..520335ddac 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -4,16 +4,16 @@ # # Translators: # Francesco Apruzzese <cescoap@gmail.com>, 2013 -# idetao <marcxosm@gmail.com>, 2013 +# idetao <marcxosm@gmail.com>, 2013-2014 # Paolo Velati <paolo.velati@gmail.com>, 2013-2014 # Vincenzo Reale <vinx.reale@gmail.com>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 23:31+0000\n" +"Last-Translator: idetao <marcxosm@gmail.com>\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" @@ -525,7 +525,7 @@ msgstr "Consenti le notifiche tramite posta elettronica" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Consenti agli utenti di mandare e-mail di notifica per i file condivisi" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 44361df066..9a1364fed7 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -53,7 +53,7 @@ msgstr "ユーザー" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" @@ -78,7 +78,7 @@ msgstr "ZIPダウンロードは無効です。" msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ファイルに戻る" @@ -152,15 +152,15 @@ msgstr "アプリフォルダーを作成できませんでした。%s のパー msgid "Application is not enabled" msgstr "アプリケーションは無効です" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "認証エラー" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "トークンが無効になりました。ページを再読込してください。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "不明なユーザー" @@ -289,69 +289,167 @@ msgstr "<a href='%s'>インストールガイド</a>をよく確認してくだ msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "カテゴリ \"%s\" が見つかりませんでした" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "数秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今日" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "1日前" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n日前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "1ヶ月前" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%nヶ月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "1年前" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "有効なユーザー名を指定する必要があります" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "ユーザ名はすでに使われています" diff --git a/l10n/jv/lib.po b/l10n/jv/lib.po index da7f24790c..0915bb223d 100644 --- a/l10n/jv/lib.po +++ b/l10n/jv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index d6c36f3cf5..b7d235cf31 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "მომხმარებელი" msgid "Admin" msgstr "ადმინისტრატორი" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP download–ი გათიშულია" msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "უკან ფაილებში" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "აპლიკაცია არ არის აქტიური" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "გთხოვთ გადაათვალიეროთ <a href='% msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "წამის წინ" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "დღეს" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "გუშინ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "გასულ თვეში" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ბოლო წელს" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "წლის წინ" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "უნდა მიუთითოთ არსებული პაროლი" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 3bc0663f9b..84aafbd299 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# សុវិចិត្រ Sovichet ទេព Tep <sovichet.tep@gmail.com>, 2014 +# សុវិចិត្រ Sovichet ទេព Tep, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "អ្នកប្រើ" msgid "Admin" msgstr "អ្នកគ្រប់គ្រង" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "បានបិទការទាញយក ZIP ។" msgid "Files need to be downloaded one by one." msgstr "ត្រូវការទាញយកឯកសារម្ដងមួយៗ។" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ត្រឡប់ទៅឯកសារ" @@ -148,15 +148,15 @@ msgstr "មិនអាចបង្កើតថតកម្មវិ msgid "Application is not enabled" msgstr "មិនបានបើកកម្មវិធី" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,69 +285,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "រកមិនឃើញចំណាត់ក្រុម \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "វិនាទីមុន" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n នាទីមុន" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ម៉ោងមុន" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ថ្ងៃនេះ" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ម្សិលមិញ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n ថ្ងៃមុន" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ខែមុន" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ខែមុន" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ឆ្នាំមុន" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ឆ្នាំមុន" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "ត្រូវផ្ដល់ឈ្មោះអ្នកប្រើឲ្យបានត្រឹមត្រូវ" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "ត្រូវផ្ដល់ពាក្យសម្ងាត់ឲ្យបានត្រឹមត្រូវ" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index f54ae77bc8..087a9e594e 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 02e1760e6a..a3d740a0d6 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -53,7 +53,7 @@ msgstr "사용자" msgid "Admin" msgstr "관리자" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" 업그레이드에 실패했습니다." @@ -78,7 +78,7 @@ msgstr "ZIP 다운로드가 비활성화 되었습니다." msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "파일로 돌아가기" @@ -152,15 +152,15 @@ msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s" msgid "Application is not enabled" msgstr "앱이 활성화되지 않았습니다" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "인증 오류" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "토큰이 만료되었습니다. 페이지를 새로 고치십시오." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -289,69 +289,167 @@ msgstr "<a href='%s'>설치 가이드</a>를 다시 한 번 확인하십시오." msgid "%s shared »%s« with you" msgstr "%s 님이 %s을(를) 공유하였습니다" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "분류 \"%s\"을(를) 찾을 수 없습니다." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "초 전" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "오늘" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "어제" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "지난 달" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "작년" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "년 전" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index eab0771ad8..9f9aa8fd22 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "بهكارهێنهر" msgid "Admin" msgstr "بهڕێوهبهری سهرهكی" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 403353e5be..392bc813a9 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Benotzer" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Sekonnen hir" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n Minutten hir" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "haut" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "gëschter" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "Läschte Mount" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "Läscht Joer" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Joren hier" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 58ff50b54f..1dde1d9c2d 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Vartotojai" msgid "Admin" msgstr "Administravimas" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Nepavyko pakelti „%s“ versijos." @@ -77,7 +77,7 @@ msgstr "ZIP atsisiuntimo galimybė yra išjungta." msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Atgal į Failus" @@ -151,15 +151,15 @@ msgstr "Nepavyksta sukurti aplanko. Prašome pataisyti leidimus. %s" msgid "Application is not enabled" msgstr "Programa neįjungta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentikacijos klaida" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Sesija baigėsi. Prašome perkrauti puslapį." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -288,77 +288,175 @@ msgstr "Prašome pažiūrėkite dar kartą <a href='%s'>diegimo instrukcijas</a> msgid "%s shared »%s« with you" msgstr "%s pasidalino »%s« su tavimi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nepavyko rasti kategorijos „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "prieš sekundę" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "prieš %n min." msgstr[1] "Prieš % minutes" msgstr[2] "Prieš %n minučių" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Prieš %n valandą" msgstr[1] "Prieš %n valandas" msgstr[2] "Prieš %n valandų" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "šiandien" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "vakar" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Prieš %n dieną" msgstr[1] "Prieš %n dienas" msgstr[2] "Prieš %n dienų" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "praeitą mėnesį" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Prieš %n mėnesį" msgstr[1] "Prieš %n mėnesius" msgstr[2] "Prieš %n mėnesių" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "praeitais metais" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "prieš metus" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Vartotojo vardas turi būti tinkamas" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Slaptažodis turi būti tinkamas" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 5a8a9d5813..7a7d03523e 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Lietotāji" msgid "Admin" msgstr "Administratori" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" @@ -74,7 +74,7 @@ msgstr "ZIP lejupielādēšana ir izslēgta." msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Lietotne nav aktivēta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentifikācijas kļūda" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,77 +285,175 @@ msgstr "Lūdzu, vēlreiz pārbaudiet <a href='%s'>instalēšanas palīdzību</a> msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nevarēja atrast kategoriju “%s”" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n minūtēm" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n stundām" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "šodien" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "vakar" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n dienām" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "pagājušajā mēnesī" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n mēnešiem" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "gājušajā gadā" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "gadus atpakaļ" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Šāds lietotājvārds jau tiek izmantots" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index c611a9b9d0..ab88decb08 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Корисници" msgid "Admin" msgstr "Админ" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Преземање во ZIP е исклучено" msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад кон датотеки" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Апликацијата не е овозможена" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Грешка во автентикација" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Жетонот е истечен. Ве молам превчитајте ја страницата." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не можам да најдам категорија „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "пред секунди" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "денеска" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "минатиот месец" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "минатата година" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "пред години" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Мора да се обезбеди валидно корисничко име " -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Мора да се обезбеди валидна лозинка" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ml/lib.po b/l10n/ml/lib.po index 7d8386a485..9b18b8c069 100644 --- a/l10n/ml/lib.po +++ b/l10n/ml/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index ad9148fab3..e2d3ce261c 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/mn/lib.po b/l10n/mn/lib.po index 24f3d3b50d..0ba562d487 100644 --- a/l10n/mn/lib.po +++ b/l10n/mn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 0d63f98d96..a8145ee4df 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Pengguna" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Ralat pengesahan" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 69bc9a0a97..ab59c1e32b 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "သုံးစွဲသူ" msgid "Admin" msgstr "အက်ဒမင်" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "ခွင့်ပြုချက်မအောင်မြင်" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ယနေ့" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "မနေ့က" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "မနှစ်က" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "နှစ် အရင်က" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 896430174f..f799a36058 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Brukere" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Klarte ikke å oppgradere \"%s\"." @@ -75,7 +75,7 @@ msgstr "ZIP-nedlasting av avslått" msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tilbake til filer" @@ -149,15 +149,15 @@ msgstr "Kan ikke opprette app-mappe. Vennligst ordne opp i tillatelser. %s" msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentikasjonsfeil" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Symbol utløpt. Vennligst last inn siden på nytt." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunne ikke finne kategori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder siden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutter siden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timer siden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dager siden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "forrige måned" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n dager siden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "forrige år" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år siden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Oppgi et gyldig brukernavn" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index 7f0a19e84b..b7c0c86c54 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index e310cb1d41..702c6f532f 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 4a28f3f9ce..0de2218602 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 19:18+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\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" @@ -179,7 +179,7 @@ msgstr "URL mag niet leeg zijn" msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" @@ -215,35 +215,35 @@ msgstr "Fout bij verplaatsen bestand" msgid "Error" msgstr "Fout" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fout bij verwijderen bestand." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" @@ -310,7 +310,7 @@ msgstr "%s kon niet worden hernoemd" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Upload (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 35171905f8..1e135da68d 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 06:50+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -51,7 +51,7 @@ msgstr "Gebruikers" msgid "Admin" msgstr "Beheerder" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." @@ -76,7 +76,7 @@ msgstr "ZIP download is uitgeschakeld." msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Terug naar bestanden" @@ -150,15 +150,15 @@ msgstr "Kan de app map niet aanmaken, Herstel de permissies. %s" msgid "Application is not enabled" msgstr "De applicatie is niet actief" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authenticatie fout" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token verlopen. Herlaad de pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Onbekende gebruiker" @@ -287,73 +287,171 @@ msgstr "Controleer de <a href='%s'>installatiehandleiding</a> goed." msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kon categorie \"%s\" niet vinden" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "seconden geleden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuut geleden" msgstr[1] "%n minuten geleden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n uur geleden" msgstr[1] "%n uur geleden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "vandaag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "gisteren" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag terug" msgstr[1] "%n dagen geleden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "vorige maand" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n maand geleden" msgstr[1] "%n maanden geleden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "vorig jaar" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "jaar geleden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Alleen de volgende tekens zijn toegestaan in een gebruikersnaam: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "De gebruikersnaam bestaat al" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index aa5c19bc22..9fa5da4d6c 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 19:18+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\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" @@ -525,7 +525,7 @@ msgstr "Toestaan e-mailnotificaties" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 5f7f37471b..09e48965bb 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Brukarar" msgid "Admin" msgstr "Administrer" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -149,15 +149,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Feil i autentisering" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Ver venleg og dobbeltsjekk <a href='%s'>installasjonsrettleiinga</a>." msgid "%s shared »%s« with you" msgstr "%s delte «%s» med deg" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekund sidan" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutt sidan" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timar sidan" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagar sidan" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "førre månad" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n månadar sidan" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "i fjor" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år sidan" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index 0571ed36a4..f59370d050 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 7883c2348c..121200c85c 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Usancièrs" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Avalcargar los ZIP es inactiu." msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Torna cap als fichièrs" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error d'autentificacion" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segonda a" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "uèi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ièr" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes passat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "an passat" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ans a" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po index b8ef391b22..495eae5b05 100644 --- a/l10n/or_IN/lib.po +++ b/l10n/or_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -284,6 +284,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index cc8806e357..2f059f913e 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ਅੱਜ" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 972f9bcf32..2730643a33 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:34+0000\n" +"Last-Translator: bobie <maciej.przybecki@gmail.com>\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,7 +183,7 @@ msgstr "URL nie może być pusty" msgid "In the home folder 'Shared' is a reserved filename" msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" @@ -219,37 +219,37 @@ msgstr "Błąd prz przenoszeniu pliku" msgid "Error" msgstr "Błąd" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Błąd podczas usuwania pliku" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" @@ -317,7 +317,7 @@ msgstr "%s nie można zmienić nazwy" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Wysyłka (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 35e7c37ef0..87fb61c2dc 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 10:53+0000\n" -"Last-Translator: bobie <maciej.przybecki@gmail.com>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Użytkownicy" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." @@ -75,7 +75,7 @@ msgstr "Pobieranie ZIP jest wyłączone." msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Wróć do plików" @@ -149,15 +149,15 @@ msgstr "Nie mogę utworzyć katalogu aplikacji. Proszę popraw uprawnienia. %s" msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Błąd uwierzytelniania" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token wygasł. Proszę ponownie załadować stronę." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Nieznany użytkownik" @@ -286,77 +286,175 @@ msgstr "Sprawdź ponownie <a href='%s'>przewodniki instalacji</a>." msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nie można odnaleźć kategorii \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekund temu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzinę temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "dziś" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "wczoraj" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "w zeszłym miesiącu" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "w zeszłym roku" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "lat temu" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "W nazwach użytkowników dozwolone są wyłącznie następujące znaki: \"a-z\", \"A-Z\", \"0-9\", oraz \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Ta nazwa użytkownika jest już używana" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 8af3733a05..26e58d91c7 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:34+0000\n" +"Last-Translator: bobie <maciej.przybecki@gmail.com>\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" @@ -524,7 +524,7 @@ msgstr "Pozwól na mailowe powiadomienia" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1d25159e22..42291ff389 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+0000\n" +"Last-Translator: Flávio Veras <flaviove@gmail.com>\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" @@ -180,7 +180,7 @@ msgstr "URL não pode estar vazia" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} já existe" @@ -216,35 +216,35 @@ msgstr "Erro movendo o arquivo" msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Erro eliminando o arquivo." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" @@ -311,7 +311,7 @@ msgstr "%s não pode ser renomeado" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envio (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 5f8c4597d9..de90637bce 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 16:40+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -285,6 +285,104 @@ msgstr "Por favor, confira os <a href='%s'>guias de instalação</a>." msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4b4186a1d0..35c10ae2eb 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+0000\n" +"Last-Translator: Flávio Veras <flaviove@gmail.com>\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" @@ -523,7 +523,7 @@ msgstr "Permitir notificação por email" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Permitir aos usuários enviar notificação de email para arquivos compartilhados" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index e8a0c4927d..ab8309c2a0 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -51,7 +51,7 @@ msgstr "Utilizadores" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." @@ -76,7 +76,7 @@ msgstr "Descarregamento em ZIP está desligado." msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Voltar a Ficheiros" @@ -150,15 +150,15 @@ msgstr "Não foi possível criar a pasta da aplicação. Por favor verifique as msgid "Application is not enabled" msgstr "A aplicação não está activada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erro na autenticação" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "O token expirou. Por favor recarregue a página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utilizador desconhecido" @@ -287,73 +287,171 @@ msgstr "Por favor verifique <a href='%s'>installation guides</a>." msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Não foi encontrado a categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Minutos atrás" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutos atrás" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n horas atrás" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoje" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ontem" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dias atrás" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ultímo mês" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n meses atrás" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ano passado" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anos atrás" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 6beeb52761..6ec7ba546e 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Utilizatori" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "Descărcarea ZIP este dezactivată." msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Înapoi la fișiere" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Aplicația nu este activată" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Eroare la autentificare" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirat. Te rugăm să reîncarci pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,77 +285,175 @@ msgstr "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</a>." msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Cloud nu a gasit categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "secunde în urmă" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n minute" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n ore" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "astăzi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ieri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n zile" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ultima lună" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ultimul an" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ani în urmă" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Trebuie să furnizaţi un nume de utilizator valid" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Trebuie să furnizaţi o parolă validă" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f59ffd70fa..379364d97a 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Пользователи" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." @@ -80,7 +80,7 @@ msgstr "ZIP-скачивание отключено." msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад к файлам" @@ -154,15 +154,15 @@ msgstr "Не удалось создать директорию. Исправь msgid "Application is not enabled" msgstr "Приложение не разрешено" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Ошибка аутентификации" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Токен просрочен. Перезагрузите страницу." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -291,77 +291,175 @@ msgstr "Пожалуйста, дважды просмотрите <a href='%s'> msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Категория \"%s\" не найдена" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "несколько секунд назад" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минута назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "сегодня" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "в прошлом месяце" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "в прошлом году" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "несколько лет назад" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 5307a86f2f..cc3a48c015 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "පරිශීලකයන්" msgid "Admin" msgstr "පරිපාලක" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP භාගත කිරීම් අක්රියයි" msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "යෙදුම සක්රිය කර නොමැත" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "සත්යාපන දෝෂයක්" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "අද" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ඊයේ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "පෙර මාසයේ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 56224c08da..4e039dc17a 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 10d4498671..8b3d08256f 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Používatelia" msgid "Admin" msgstr "Administrátor" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." @@ -75,7 +75,7 @@ msgstr "Sťahovanie súborov ZIP je vypnuté." msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Späť na súbory" @@ -149,15 +149,15 @@ msgstr "Nemožno vytvoriť aplikačný priečinok. Prosím upravte povolenia. %s msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Chyba autentifikácie" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token vypršal. Obnovte, prosím, stránku." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Neznámy používateľ" @@ -286,77 +286,175 @@ msgstr "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>." msgid "%s shared »%s« with you" msgstr "%s s vami zdieľa »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nemožno nájsť danú kategóriu \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "pred sekundami" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "dnes" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "včera" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "minulý mesiac" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "minulý rok" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "pred rokmi" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index fd0b2af9f9..46cd7f25c6 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,6 +286,104 @@ msgstr "Preverite <a href='%s'>navodila namestitve</a>." msgid "%s shared »%s« with you" msgstr "%s je omogočil souporabo »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 1e227ddd18..bd16549814 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Përdoruesit" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Kthehu tek skedarët" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Programi nuk është i aktivizuar." -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>." msgid "%s shared »%s« with you" msgstr "%s ndau »%s« me ju" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kategoria \"%s\" nuk u gjet" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekonda më parë" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuta më parë" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n orë më parë" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "sot" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "dje" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n ditë më parë" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "muajin e shkuar" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n muaj më parë" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "vitin e shkuar" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "vite më parë" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Duhet të jepni një emër të vlefshëm përdoruesi" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Duhet të jepni një fjalëkalim te vlefshëm" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 9cd072c745..fb962337e4 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Корисници" msgid "Admin" msgstr "Администратор" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Преузимање ZIP-а је искључено." msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад на датотеке" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Апликација није омогућена" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Грешка при провери идентитета" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Жетон је истекао. Поново учитајте страницу." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "Погледајте <a href='%s'>водиче за инсталациј msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не могу да пронађем категорију „%s“." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "пре неколико секунди" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "данас" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "јуче" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "прошлог месеца" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "прошле године" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "година раније" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Морате унети исправно корисничко име" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 0f3d0d7a09..2cfe024582 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Korisnici" msgid "Admin" msgstr "Adninistracija" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Greška pri autentifikaciji" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Pre par sekundi" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Danas" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "juče" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Prije %n dana." -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "prošlog meseca" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "prošle godine" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "pre nekoliko godina" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/su/lib.po b/l10n/su/lib.po index 9d0019b5f5..4d3929c27c 100644 --- a/l10n/su/lib.po +++ b/l10n/su/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 3516cdfdd7..cb9a685d2a 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 11:20+0000\n" -"Last-Translator: henrikhjelm <mailto@henrikhjelm.se>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Användare" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." @@ -80,7 +80,7 @@ msgstr "Nerladdning av ZIP är avstängd." msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tillbaka till Filer" @@ -154,15 +154,15 @@ msgstr "Kan inte skapa appens mapp. Var god åtgärda rättigheterna. %s" msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Fel vid autentisering" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ogiltig token. Ladda om sidan." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Okänd användare" @@ -291,73 +291,171 @@ msgstr "Var god kontrollera <a href='%s'>installationsguiden</a>." msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunde inte hitta kategorin \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder sedan" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "förra månaden" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "förra året" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år sedan" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Endast följande tecken är tillåtna i ett användarnamn: \"az\", \"AZ\", \"0-9\", och \"_ @ -.\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Användarnamnet används redan" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index b607d2dedb..8de7185991 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 96e0bc2c2a..0cff9cc46f 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "பயனாளர்" msgid "Admin" msgstr "நிர்வாகம்" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "வீசொலிப் பூட்டு பதிவிறக்க msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "இன்று" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "நேற்று" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "கடந்த மாதம்" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "கடந்த வருடம்" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 9428875f4e..97177c36dc 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "వాడుకరులు" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n నిమిషాల క్రితం" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n గంటల క్రితం" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ఈరోజు" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "నిన్న" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n రోజుల క్రితం" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "పోయిన నెల" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n నెలల క్రితం" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 21a8048179..3b379726b2 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -135,59 +135,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "" -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ea124e27fe..9098867f33 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -177,7 +177,7 @@ msgstr "" msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index f0dd2975cc..7777b79c59 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f7b5e4e305..4249671016 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index a20e27c699..1ceb58b2d1 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d3fab126a2..dc188cbf79 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index dc51b39052..3fbca2717b 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 79fd7165e6..142859181d 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -285,6 +285,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s " +"is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index c293e6187a..d9c628a1c5 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -277,6 +277,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s " +"is a member of" +msgstr "" + +#: share/share.php:518 share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f52f3d53d7..ed8bfbf1ef 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 50f8114aaf..95200b23de 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "" @@ -145,7 +145,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index a6d9905168..ae637283fc 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: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index fcd4bbd24b..d11c284a77 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "ผู้ใช้งาน" msgid "Admin" msgstr "ผู้ดูแล" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "คุณสมบัติการดาวน์โหลด zip ถ msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "รหัสยืนยันความถูกต้องหมดอายุแล้ว กรุณาโหลดหน้าเว็บใหม่อีกครั้ง" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "ไม่พบหมวดหมู่ \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "วันนี้" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "เมื่อวานนี้" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "เดือนที่แล้ว" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ปีที่แล้ว" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index f25ab1e0b9..3c8d0e8722 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:00+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" @@ -138,59 +138,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "saniyeler önce" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "bugün" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "dün" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "geçen ay" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "geçen yıl" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "yıllar önce" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 67cdf2e53d..5228d98bdb 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:00+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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" @@ -182,7 +182,7 @@ msgstr "URL boş olamaz" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" @@ -218,35 +218,35 @@ msgstr "Dosya taşıma hatası" msgid "Error" msgstr "Hata" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" @@ -313,7 +313,7 @@ msgstr "%s yeniden adlandırılamadı" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Yükle (azami: %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index d8048f25bd..c70944abd1 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 13:52+0000\n" -"Last-Translator: volkangezer <volkangezer@gmail.com>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -30,7 +30,7 @@ msgstr "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\ #: private/app.php:248 msgid "No app name specified" -msgstr "Uygulama adı belirtimedli" +msgstr "Uygulama adı belirtilmedi" #: private/app.php:353 msgid "Help" @@ -75,11 +75,11 @@ msgstr "ZIP indirmeleri kapatıldı." #: private/files.php:233 msgid "Files need to be downloaded one by one." -msgstr "Dosyaların birer birer indirilmesi gerekmektedir." +msgstr "Dosyaların tek tek indirilmesi gerekmektedir." #: private/files.php:234 private/files.php:261 msgid "Back to Files" -msgstr "Dosyalara dön" +msgstr "Dosyalara Dön" #: private/files.php:259 msgid "Selected files too large to generate zip file." @@ -199,7 +199,7 @@ msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" #: private/setup/oci.php:114 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." -msgstr "Siz veya yönetici mevcut bir hesap girmeli." +msgstr "Mevcut bit hesap ya da yönetici hesabını girmelisiniz." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" @@ -244,7 +244,7 @@ msgstr "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)" +msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -275,7 +275,7 @@ msgstr "Bir yönetici kullanıcı parolası ayarlayın." msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor." +msgstr "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor." #: private/setup.php:203 #, php-format @@ -288,6 +288,104 @@ msgstr "Lütfen <a href='%s'>kurulum kılavuzlarını</a> iki kez kontrol edin." msgid "%s shared »%s« with you" msgstr "%s sizinle »%s« paylaşımında bulundu" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -339,7 +437,7 @@ msgstr "geçen yıl" #: private/template/functions.php:146 msgid "years ago" -msgstr "yıl önce" +msgstr "yıllar önce" #: private/user/manager.php:232 msgid "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f5e4733f40..2b6aae6991 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:10+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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" @@ -65,7 +65,7 @@ msgstr "Kimlik doğrulama yöntemi" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "App Store'dan liste yüklenemiyor" +msgstr "Uygulama Mağazasın'dan liste yüklenemiyor" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:49 @@ -378,7 +378,7 @@ msgstr "Kurulum Uyarısı" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor." +msgstr "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor." #: templates/admin.php:79 #, php-format @@ -525,7 +525,7 @@ msgstr "Posta bilgilendirmesine izin ver" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index 70663f6f81..d90cda5f05 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 49eec14adb..3409a80517 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "ئىشلەتكۈچىلەر" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "سالاھىيەت دەلىللەش خاتالىقى" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "بۈگۈن" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "تۈنۈگۈن" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 5724656194..598c9e7f49 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Користувачі" msgid "Admin" msgstr "Адмін" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP завантаження вимкнено." msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Повернутися до файлів" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Додаток не увімкнений" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Помилка автентифікації" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "Будь ласка, перевірте <a href='%s'>інструкці msgid "%s shared »%s« with you" msgstr "%s розподілено »%s« з тобою" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не вдалося знайти категорію \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "секунди тому" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n хвилин тому" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n годин тому" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "сьогодні" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчора" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n днів тому" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "минулого місяця" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n місяців тому" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "минулого року" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "роки тому" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po index b21775ce5a..adb951f698 100644 --- a/l10n/ur/lib.po +++ b/l10n/ur/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index f06ab498fb..75e40964d4 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "یوزرز" msgid "Admin" msgstr "ایڈمن" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index cb9c4b53ca..e8d5252faf 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index e1f9cb7d4c..b21af741c5 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Người dùng" msgid "Admin" msgstr "Quản trị" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Tải về ZIP đã bị tắt." msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Trở lại tập tin" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Ứng dụng không được BẬT" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Lỗi xác thực" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Mã Token đã hết hạn. Hãy tải lại trang." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s đã chia sẻ »%s« với bạn" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "không thể tìm thấy mục \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "vài giây trước" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n phút trước" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n giờ trước" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hôm nay" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hôm qua" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n ngày trước" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "tháng trước" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n tháng trước" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "năm trước" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "năm trước" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 81c8dfbaed..0b53e0ef25 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -53,7 +53,7 @@ msgstr "用户" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" 升级失败。" @@ -78,7 +78,7 @@ msgstr "ZIP 下载已经关闭" msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "回到文件" @@ -152,15 +152,15 @@ msgstr "无法创建应用程序文件夹。请修正权限。%s" msgid "Application is not enabled" msgstr "应用程序未启用" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "认证出错" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token 过期,请刷新页面。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -289,69 +289,167 @@ msgstr "请认真检查<a href='%s'>安装指南</a>." msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "无法找到分类 \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今天" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨天" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "上月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "去年" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 5af2222d38..298b755919 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "用戶" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今日" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨日" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "前一月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 509f97f58f..8823dee83c 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "使用者" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "升級失敗:%s" @@ -75,7 +75,7 @@ msgstr "ZIP 下載已關閉。" msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "回到檔案列表" @@ -149,15 +149,15 @@ msgstr "無法建立應用程式目錄,請檢查權限:%s" msgid "Application is not enabled" msgstr "應用程式未啟用" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "認證錯誤" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token 過期,請重新整理頁面。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,69 +286,167 @@ msgstr "請參考<a href='%s'>安裝指南</a>。" msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "找不到分類:\"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "幾秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今天" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨天" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "上個月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "去年" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "幾年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "必須提供一個有效的用戶名" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 883c7323c0..f0db728b55 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","%n kuud tagasi"), "last year" => "viimasel aastal", "years ago" => "aastat tagasi", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Kasutajanimes on lubatud ainult järgnevad tähemärgid: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"", "A valid username must be provided" => "Sisesta nõuetele vastav kasutajatunnus", "A valid password must be provided" => "Sisesta nõuetele vastav parool", "The username is already being used" => "Kasutajanimi on juba kasutuses" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 0be1c4b186..c1275da2a7 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -1,7 +1,7 @@ <?php $TRANSLATIONS = array( "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz.", -"No app name specified" => "Uygulama adı belirtimedli", +"No app name specified" => "Uygulama adı belirtilmedi", "Help" => "Yardım", "Personal" => "Kişisel", "Settings" => "Ayarlar", @@ -12,8 +12,8 @@ $TRANSLATIONS = array( "Invalid image" => "Geçersiz resim", "web services under your control" => "kontrolünüzün altındaki web hizmetleri", "ZIP download is turned off." => "ZIP indirmeleri kapatıldı.", -"Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", -"Back to Files" => "Dosyalara dön", +"Files need to be downloaded one by one." => "Dosyaların tek tek indirilmesi gerekmektedir.", +"Back to Files" => "Dosyalara Dön", "Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük.", "Please download the files separately in smaller chunks or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", @@ -39,21 +39,21 @@ $TRANSLATIONS = array( "%s enter the database name." => "%s veritabanı adını girin.", "%s you may not use dots in the database name" => "%s veritabanı adında nokta kullanamayabilirsiniz", "MS SQL username and/or password not valid: %s" => "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s", -"You need to enter either an existing account or the administrator." => "Siz veya yönetici mevcut bir hesap girmeli.", +"You need to enter either an existing account or the administrator." => "Mevcut bit hesap ya da yönetici hesabını girmelisiniz.", "MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz", "DB Error: \"%s\"" => "VT Hatası: \"%s\"", "Offending command was: \"%s\"" => "Saldırgan komut: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB kullanıcı '%s'@'localhost' zaten mevcut.", "Drop this user from MySQL/MariaDB" => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", "MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut", -"Drop this user from MySQL/MariaDB." => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", +"Drop this user from MySQL/MariaDB." => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop).", "Oracle connection could not be established" => "Oracle bağlantısı kurulamadı", "Oracle username and/or password not valid" => "Oracle kullanıcı adı ve/veya parolası geçerli değil", "Offending command was: \"%s\", name: %s, password: %s" => "Hatalı komut: \"%s\", ad: %s, parola: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL kullanıcı adı ve/veya parolası geçerli değil", "Set an admin username." => "Bir yönetici kullanıcı adı ayarlayın.", "Set an admin password." => "Bir yönetici kullanıcı parolası ayarlayın.", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the <a href='%s'>installation guides</a>." => "Lütfen <a href='%s'>kurulum kılavuzlarını</a> iki kez kontrol edin.", "%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı", @@ -66,7 +66,7 @@ $TRANSLATIONS = array( "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", -"years ago" => "yıl önce", +"years ago" => "yıllar önce", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Kullanıcı adında sadece bu karakterlere izin verilmektedir: \"a-z\", \"A-Z\", \"0-9\", ve \"_.@-\"", "A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı", "A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index cbe552d23d..b33d305592 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nelze změnit celé jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", +"Files decrypted successfully" => "Soubory úspěšně dešifrovány", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", "Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", "Email saved" => "E-mail uložen", @@ -113,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Allow mail notification" => "Povolit e-mailová upozornění", +"Allow users to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index e9105c8dda..2255c2e8bc 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 8b9c455401..16622c80b0 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index c61d1c8de2..1d1cb17a7f 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -67,7 +67,7 @@ $TRANSLATIONS = array( "Error creating user" => "Error creating user", "A valid password must be provided" => "A valid password must be provided", "Warning: Home directory for user \"{user}\" already exists" => "Warning: Home directory for user \"{user}\" already exists", -"__language_name__" => "__language_name__", +"__language_name__" => "English (British English)", "Everything (fatal issues, errors, warnings, info, debug)" => "Everything (fatal issues, errors, warnings, info, debug)", "Info, warnings, errors and fatal issues" => "Info, warnings, errors and fatal issues", "Warnings, errors and fatal issues" => "Warnings, errors and fatal issues", @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "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 users to send mail notification for shared files" => "Allow users 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/et_EE.php b/settings/l10n/et_EE.php index b46e0138c1..5ad3b4b0d6 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Täispika nime muutmine ebaõnnestus", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", +"Files decrypted successfully" => "Failide krüpteerimine õnnestus", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Ei suutnud faile dekrüpteerida, palun kontrolli oma owncloud.log-i või küsi nõu administraatorilt", +"Couldn't decrypt your files, check your password and try again" => "Ei suutnud failde dekrüpteerida, kontrolli parooli ja proovi uuesti", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "Unable to delete group" => "Grupi kustutamine ebaõnnestus", @@ -111,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Allow mail notification" => "Luba teavitused e-postiga", +"Allow users to send mail notification for shared files" => "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index d11ab032a0..d0bc283d87 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -74,6 +74,7 @@ $TRANSLATIONS = array( "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Turvallisuusvaroitus", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä.", "Setup Warning" => "Asetusvaroitus", "Please double check the <a href=\"%s\">installation guides</a>." => "Lue <a href=\"%s\">asennusohjeet</a> tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", @@ -101,6 +102,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Allow mail notification" => "Salli sähköposti-ilmoitukset", +"Allow users to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", @@ -151,6 +153,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Valitse uusi tiedostoista", "Remove image" => "Poista kuva", "Either png or jpg. Ideally square but you will be able to crop it." => "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa.", +"Your avatar is provided by your original account." => "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi.", "Cancel" => "Peru", "Choose as profile image" => "Valitse profiilikuvaksi", "Language" => "Kieli", @@ -158,6 +161,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Käytä tätä osoitetta <a href=\"%s\" target=\"_blank\">käyttääksesi tiedostojasi WebDAVin kautta</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus", +"Log-in password" => "Kirjautumissalasana", "Decrypt all Files" => "Pura kaikkien tiedostojen salaus", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 7380a7abde..0464dee78f 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "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 users to send mail notification for shared files" => "Autoriser les utilisateurs à envoyer une notification par courriel 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/gl.php b/settings/l10n/gl.php index b320609dd9..ab609ec1bc 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Allow mail notification" => "Permitir o envío de notificacións por correo", +"Allow users to send mail notification for shared files" => "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index dd790b8511..74c16029a8 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Allow mail notification" => "Consenti le notifiche tramite posta elettronica", +"Allow users to send mail notification for shared files" => "Consenti agli utenti di mandare e-mail di notifica per i file condivisi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index a88725fd5f..5cc183beab 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", "Allow mail notification" => "Toestaan e-mailnotificaties", +"Allow users to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ff93b7b1be..88fdd667d5 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "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 users to send mail notification for shared files" => "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "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_BR.php b/settings/l10n/pt_BR.php index aae9027ba3..482823926b 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Allow mail notification" => "Permitir notificação por email", +"Allow users to send mail notification for shared files" => "Permitir aos usuários enviar notificação de email para arquivos compartilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 89d7f8d2b1..6d9fdc0f5b 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -10,7 +10,7 @@ $TRANSLATIONS = array( "Send mode" => "Gönderme kipi", "Encryption" => "Şifreleme", "Authentication method" => "Kimlik doğrulama yöntemi", -"Unable to load list from App Store" => "App Store'dan liste yüklenemiyor", +"Unable to load list from App Store" => "Uygulama Mağazasın'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", "Your full name has been changed." => "Tam adınız değiştirildi.", "Unable to change full name" => "Tam adınız değiştirilirken hata", @@ -83,7 +83,7 @@ $TRANSLATIONS = array( "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu belge kök dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the <a href=\"%s\">installation guides</a>." => "Lütfen <a href='%s'>kurulum kılavuzlarını</a> tekrar kontrol edin.", "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", +"Allow users to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", -- GitLab From c92a13848931a9872aad3edd281950f0dfebafeb Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@statuscode.ch> Date: Thu, 24 Apr 2014 08:33:58 +0200 Subject: [PATCH 168/187] Preventing access to the config folder It isn't uncommon that admins create a backup file of the config (i.e. `config.php.bak`) before performing any changes. This would allow everybody to read the backup of the configuration file which contain several secret and critical values. I don't believe this is worth a backport or getting added to the installer. It's just a nice to have. People that create public readable backups of their configuration are the one to blame, not us :-) --- config/.htaccess | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 config/.htaccess diff --git a/config/.htaccess b/config/.htaccess new file mode 100644 index 0000000000..2421e9a163 --- /dev/null +++ b/config/.htaccess @@ -0,0 +1,12 @@ +# line below if for Apache 2.4 +<ifModule mod_authz_core> +Require all denied +</ifModule> + +# line below if for Apache 2.2 +<ifModule !mod_authz_core> +deny from all +</ifModule> + +# section for Apache 2.2 and 2.4 +IndexIgnore * -- GitLab From 49b44e7e228855a42771bce4b2bc10b2235557cb Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Wed, 23 Apr 2014 16:25:29 +0200 Subject: [PATCH 169/187] Normalize paths when moving properties --- lib/private/connector/sabre/objecttree.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index 71a35e87ee..605684a779 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -148,7 +148,7 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { // update properties $query = \OC_DB::prepare('UPDATE `*PREFIX*properties` SET `propertypath` = ?' . ' WHERE `userid` = ? AND `propertypath` = ?'); - $query->execute(array($destinationPath, \OC_User::getUser(), $sourcePath)); + $query->execute(array(\OC\Files\Filesystem::normalizePath($destinationPath), \OC_User::getUser(), \OC\Files\Filesystem::normalizePath($sourcePath))); $this->markDirty($sourceDir); $this->markDirty($destinationDir); -- GitLab From cd0c5990f895bcdce47acf2dbf11ebadd920a404 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Thu, 24 Apr 2014 11:10:46 +0200 Subject: [PATCH 170/187] properly quote etags --- 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 641c69dd1f..1d5b3fce32 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -185,7 +185,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * @return mixed */ public function getETag() { - return $this->info->getEtag(); + return '"' . $this->info->getEtag() . '"'; } /** -- GitLab From 6650be99136bbeecc39a28cbe9c22de0c5cf08ac Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Wed, 23 Apr 2014 12:50:24 +0200 Subject: [PATCH 171/187] add setting to set default expire date --- lib/private/share/helper.php | 49 ++++++++++++++++++++++++++++++++ lib/private/share/share.php | 15 ++++++++-- settings/admin.php | 4 +++ settings/css/settings.css | 1 + settings/templates/admin.php | 19 ++++++++++++- tests/lib/share/helper.php | 54 ++++++++++++++++++++++++++++++++++++ 6 files changed, 139 insertions(+), 3 deletions(-) create mode 100644 tests/lib/share/helper.php diff --git a/lib/private/share/helper.php b/lib/private/share/helper.php index fde5566728..515ec85909 100644 --- a/lib/private/share/helper.php +++ b/lib/private/share/helper.php @@ -199,4 +199,53 @@ class Helper extends \OC\Share\Constants { $query->execute(); } } + + /** + * @brief get default expire settings defined by the admin + * @return array contains 'defaultExpireDateSet', 'enforceExpireDate', 'expireAfterDays' + */ + public static function getDefaultExpireSetting() { + + $defaultExpireSettings = array('defaultExpireDateSet' => false); + + // get default expire settings + $defaultExpireDate = \OC_Appconfig::getValue('core', 'shareapi_default_expire_date', 'no'); + if ($defaultExpireDate === 'yes') { + $enforceExpireDate = \OC_Appconfig::getValue('core', 'shareapi_enforce_expire_date', 'no'); + $defaultExpireSettings['defaultExpireDateSet'] = true; + $defaultExpireSettings['expireAfterDays'] = (int)\OC_Appconfig::getValue('core', 'shareapi_expire_after_n_days', '7'); + $defaultExpireSettings['enforceExpireDate'] = $enforceExpireDate === 'yes' ? true : false; + } + + return $defaultExpireSettings; + } + + /** + * @brief calculate expire date + * @param array $defaultExpireSettings contains 'defaultExpireDateSet', 'enforceExpireDate', 'expireAfterDays' + * @param int $creationTime timestamp when the share was created + * @param int $userExpireDate expire timestamp set by the user + * @return mixed integer timestamp or False + */ + public static function calculateExpireDate($defaultExpireSettings, $creationTime, $userExpireDate = null) { + + $expires = false; + + if (isset($defaultExpireSettings['defaultExpireDateSet']) && $defaultExpireSettings['defaultExpireDateSet']) { + $expires = $creationTime + $defaultExpireSettings['expireAfterDays'] * 86400; + } + + + if (isset($userExpireDate)) { + // if the admin decided to enforce the default expire date then we only take + // the user defined expire date of it is before the default expire date + if ($expires && isset($defaultExpireSettings['enforceExpireDate']) && $defaultExpireSettings['enforceExpireDate']) { + $expires = ($userExpireDate < $expires) ? $userExpireDate : $expires; + } else { + $expires = $userExpireDate; + } + } + + return $expires; + } } diff --git a/lib/private/share/share.php b/lib/private/share/share.php index fe756b5ae7..a18c54af8a 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -844,9 +844,20 @@ class Share extends \OC\Share\Constants { * @return bool True if item was expired, false otherwise. */ protected static function expireItem(array $item) { + + // get default expire settings + $defaultSettings = Helper::getDefaultExpireSetting(); + // calculate expire date if (!empty($item['expiration'])) { - $now = new \DateTime(); - $expires = new \DateTime($item['expiration']); + $userDefinedExpire = new \DateTime($item['expiration']); + $userDefinedExpireTimestamp = $userDefinedExpire->getTimestamp(); + } else { + $userDefinedExpireTimestamp = null; + } + $expires = Helper::calculateExpireDate($defaultSettings, $item['stime'], $userDefinedExpireTimestamp); + + if (is_int($expires)) { + $now = time(); if ($now > $expires) { self::unshareItem($item); return true; diff --git a/settings/admin.php b/settings/admin.php index bce18b7cf6..49dde59ce2 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -45,6 +45,10 @@ $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundj $tmpl->assign('cron_log', OC_Config::getValue('cron_log', true)); $tmpl->assign('lastcron', OC_Appconfig::getValue('core', 'lastcron', false)); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); +$tmpl->assign('shareDefaultExpireDateSet', OC_Appconfig::getValue('core', 'shareapi_default_expire_date', 'no')); +$tmpl->assign('shareExpireAfterNDays', OC_Appconfig::getValue('core', 'shareapi_expire_after_n_days', '7')); +$tmpl->assign('shareEnforceExpireDate', OC_Appconfig::getValue('core', 'shareapi_enforce_expire_date', 'no')); + // Check if connected using HTTPS if (OC_Request::serverProtocol() === 'https') { diff --git a/settings/css/settings.css b/settings/css/settings.css index a7680aad94..5d8f9a7541 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -132,6 +132,7 @@ table.grid td.date{ span.securitywarning {color:#C33; font-weight:bold; } span.connectionwarning {color:#933; font-weight:bold; } table.shareAPI td { padding-bottom: 0.8em; } +table.shareAPI input#shareapi_expire_after_n_days {width: 25px;} #mail_settings p label:first-child { display: inline-block; diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 07b5ee7860..8eb1beb956 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -254,6 +254,23 @@ if (!$_['internetconnectionworking']) { <em><?php p($l->t('Allow users to send mail notification for shared files')); ?></em> </td> </tr> + + <tr> + <td <?php if ($_['shareAPIEnabled'] == 'no') print_unescaped('class="hidden"');?>> + <input type="checkbox" name="shareapi_default_expire_date" id="shareapi_default_expire_date" + value="1" <?php if ($_['shareDefaultExpireDateSet'] == 'yes') print_unescaped('checked="checked"'); ?> /> + <label for="shareapi_default_expire_date"><?php p($l->t('Set default expire date'));?></label><br/> + <?php p($l->t( 'Expire after ' )); ?> + <input type="text" name='shareapi_expire_after_n_days' id="shareapi_expire_after_n_days" placeholder="<?php p('7')?>" + value='<?php p($_['shareExpireAfterNDays']) ?>' /> + <?php p($l->t( 'days' )); ?> + <input type="checkbox" name="shareapi_enforce_expire_date" id="shareapi_enforce_expire_date" + value="1" <?php if ($_['shareEnforceExpireDate'] == 'yes') print_unescaped('checked="checked"'); ?> /> + <label for="shareapi_enforce_expire_date"><?php p($l->t('Enforce expire date'));?></label><br/> + <em><?php p($l->t('Expire shares by default after N days')); ?></em> + </td> + </tr> + </table> </div> @@ -296,7 +313,7 @@ if (!$_['internetconnectionworking']) { <p><?php p($l->t('This is used for sending out notifications.')); ?></p> <p> - <label for="mail_smtpmode"><?php p($l->t( 'Send mode' )); ?></label> + <label for="mail_smtpmode"><?php p($l->t( 'Send mode' )); ?></label> <select name='mail_smtpmode' id='mail_smtpmode'> <?php foreach ($mail_smtpmode as $smtpmode): $selected = ''; diff --git a/tests/lib/share/helper.php b/tests/lib/share/helper.php new file mode 100644 index 0000000000..367507417a --- /dev/null +++ b/tests/lib/share/helper.php @@ -0,0 +1,54 @@ +<?php +/** +* ownCloud +* +* @author Bjoern Schiessle +* @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com> +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see <http://www.gnu.org/licenses/>. +*/ + +class Test_Share_Helper extends PHPUnit_Framework_TestCase { + + public function expireDateProvider() { + return array( + // no default expire date, we take the users expire date + array(array('defaultExpireDateSet' => false), 2000000000, 2000010000, 2000010000), + // no default expire date and no user defined expire date, return false + array(array('defaultExpireDateSet' => false), 2000000000, null, false), + // unenforced expire data and no user defined expire date, take default expire date + array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => false), 2000000000, null, 2000086400), + // enforced expire date and no user defined expire date, take default expire date + array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => true), 2000000000, null, 2000086400), + // unenforced expire date and user defined date > default expire date, take users expire date + array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => false), 2000000000, 2000100000, 2000100000), + // unenforced expire date and user expire date < default expire date, take users expire date + array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => false), 2000000000, 2000010000, 2000010000), + // enforced expire date and user expire date < default expire date, take users expire date + array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => true), 2000000000, 2000010000, 2000010000), + // enforced expire date and users expire date > default expire date, take default expire date + array(array('defaultExpireDateSet' => true, 'expireAfterDays' => 1, 'enforceExpireDate' => true), 2000000000, 2000100000, 2000086400), + ); + } + + /** + * @dataProvider expireDateProvider + */ + public function testCalculateExpireDate($defaultExpireSettings, $creationTime, $userExpireDate, $expected) { + $result = \OC\Share\Helper::calculateExpireDate($defaultExpireSettings, $creationTime, $userExpireDate); + $this->assertSame($expected, $result); + } + + +} -- GitLab From e85fe01faf3851576a222e7acb6f6944ed247778 Mon Sep 17 00:00:00 2001 From: Andreas Fischer <bantu@owncloud.com> Date: Thu, 24 Apr 2014 15:16:57 +0200 Subject: [PATCH 172/187] Make PHPUnit_Framework_TestListener implementations compatible to 4.0. --- tests/startsessionlistener.php | 3 +++ tests/testcleanuplistener.php | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tests/startsessionlistener.php b/tests/startsessionlistener.php index 808a2a2226..ba049559c6 100644 --- a/tests/startsessionlistener.php +++ b/tests/startsessionlistener.php @@ -20,6 +20,9 @@ class StartSessionListener implements PHPUnit_Framework_TestListener { public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { } + public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { } diff --git a/tests/testcleanuplistener.php b/tests/testcleanuplistener.php index 2083ffce67..e3f250fdca 100644 --- a/tests/testcleanuplistener.php +++ b/tests/testcleanuplistener.php @@ -25,6 +25,9 @@ class TestCleanupListener implements PHPUnit_Framework_TestListener { public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { } + public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { } -- GitLab From 35321c7d416202228326e774cac620025b7d0f26 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle <schiessle@owncloud.com> Date: Thu, 24 Apr 2014 15:13:34 +0200 Subject: [PATCH 173/187] add additional rows to the select statement, 'stime' is needed for the expire check --- lib/private/share/share.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index a18c54af8a..0f69a94453 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1612,9 +1612,9 @@ class Share extends \OC\Share\Constants { $select = '*'; if ($format == self::FORMAT_STATUSES) { if ($fileDependent) { - $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `storage`, `share_with`, `uid_owner` , `file_source`'; + $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `storage`, `share_with`, `uid_owner` , `file_source`, `stime`'; } else { - $select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`, `item_source`'; + $select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`, `item_source`, `stime`'; } } else { if (isset($uidOwner)) { @@ -1630,7 +1630,7 @@ class Share extends \OC\Share\Constants { if ($fileDependent) { if ($format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' - . '`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' + . '`share_type`, `share_with`, `file_source`, `path`, `file_target`, `stime`, ' . '`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' . '`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; } else { -- GitLab From 916b265cd580b45e14be1dc37458697ea0e679a6 Mon Sep 17 00:00:00 2001 From: Andreas Fischer <bantu@owncloud.com> Date: Thu, 24 Apr 2014 16:42:28 +0200 Subject: [PATCH 174/187] Normalise testcleanuplistener.php indentation and end of file. --- tests/testcleanuplistener.php | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/tests/testcleanuplistener.php b/tests/testcleanuplistener.php index e3f250fdca..b544c8fbe4 100644 --- a/tests/testcleanuplistener.php +++ b/tests/testcleanuplistener.php @@ -16,31 +16,31 @@ class TestCleanupListener implements PHPUnit_Framework_TestListener { $this->verbosity = $verbosity; } - public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { - } + public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { + } - public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) { - } + public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) { + } - public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { - } + public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } public function addRiskyTest(PHPUnit_Framework_Test $test, Exception $e, $time) { } - public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { - } + public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } - public function startTest(PHPUnit_Framework_Test $test) { - } + public function startTest(PHPUnit_Framework_Test $test) { + } - public function endTest(PHPUnit_Framework_Test $test, $time) { - } + public function endTest(PHPUnit_Framework_Test $test, $time) { + } - public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { - } + public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { + } - public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { + public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { if ($this->cleanStrayDataFiles() && $this->isShowSuiteWarning()) { printf("TestSuite '%s': Did not clean up data dir\n", $suite->getName()); } @@ -50,7 +50,7 @@ class TestCleanupListener implements PHPUnit_Framework_TestListener { if ($this->cleanProxies() && $this->isShowSuiteWarning()) { printf("TestSuite '%s': Did not clean up proxies\n", $suite->getName()); } - } + } private function isShowSuiteWarning() { return $this->verbosity === 'suite' || $this->verbosity === 'detail'; @@ -143,4 +143,3 @@ class TestCleanupListener implements PHPUnit_Framework_TestListener { return count($proxies) > 0; } } -?> -- GitLab From fc4be3d0ad8b6db4f5d4ef55a3c7714fd3546401 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk <victor.dubiniuk@gmail.com> Date: Thu, 24 Apr 2014 15:41:30 +0300 Subject: [PATCH 175/187] Add flv to known mimetypes --- lib/private/mimetypes.list.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 07e2391c11..3fe454f41f 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -60,6 +60,7 @@ return array( 'epub' => array('application/epub+zip', null), 'exe' => array('application/x-ms-dos-executable', null), 'flac' => array('audio/flac', null), + 'flv' => array('video/x-flv', null), 'gif' => array('image/gif', null), 'gz' => array('application/x-gzip', null), 'gzip' => array('application/x-gzip', null), -- GitLab From 3fc809dfd80a296d7da922a06f9e13d446b3d3f0 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Fri, 25 Apr 2014 01:56:28 -0400 Subject: [PATCH 176/187] [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 2 - apps/files/l10n/cs_CZ.php | 3 +- apps/files/l10n/da.php | 2 - apps/files/l10n/de.php | 2 - apps/files/l10n/de_DE.php | 2 - apps/files/l10n/el.php | 2 - apps/files/l10n/en_GB.php | 2 - apps/files/l10n/es.php | 3 +- apps/files/l10n/es_AR.php | 2 - apps/files/l10n/es_CL.php | 2 + apps/files/l10n/es_MX.php | 2 - apps/files/l10n/et_EE.php | 2 - apps/files/l10n/eu.php | 2 - apps/files/l10n/fi_FI.php | 3 +- apps/files/l10n/fr.php | 2 - apps/files/l10n/gl.php | 2 - apps/files/l10n/hu_HU.php | 2 - apps/files/l10n/ia.php | 1 + apps/files/l10n/id.php | 2 - apps/files/l10n/it.php | 2 - apps/files/l10n/ja.php | 2 - apps/files/l10n/ko.php | 2 - apps/files/l10n/lt_LT.php | 2 - apps/files/l10n/mk.php | 1 - apps/files/l10n/nb_NO.php | 2 - apps/files/l10n/nl.php | 2 - apps/files/l10n/pl.php | 2 - apps/files/l10n/pt_BR.php | 2 - apps/files/l10n/pt_PT.php | 2 - apps/files/l10n/ro.php | 11 ++ apps/files/l10n/ru.php | 2 - apps/files/l10n/sk_SK.php | 2 - apps/files/l10n/sl.php | 3 +- apps/files/l10n/sv.php | 3 +- apps/files/l10n/tr.php | 2 - apps/files/l10n/zh_CN.php | 2 - apps/files/l10n/zh_TW.php | 1 - apps/files_encryption/l10n/es_AR.php | 1 + apps/files_encryption/l10n/pt_PT.php | 3 + apps/files_encryption/l10n/zh_TW.php | 2 + apps/files_external/l10n/es_AR.php | 1 + apps/files_external/l10n/es_CL.php | 5 + apps/files_external/l10n/ia.php | 1 + apps/files_external/l10n/sv.php | 6 +- apps/files_external/l10n/zh_TW.php | 1 + apps/files_sharing/l10n/bg_BG.php | 3 +- apps/user_ldap/l10n/af_ZA.php | 3 +- apps/user_ldap/l10n/es.php | 2 + apps/user_ldap/l10n/es_AR.php | 7 + apps/user_ldap/l10n/ia.php | 3 +- core/l10n/af_ZA.php | 35 +++++ core/l10n/es_AR.php | 5 + core/l10n/ia.php | 93 +++++++++++- core/l10n/ro.php | 2 + core/l10n/sv.php | 4 +- core/l10n/uk.php | 7 + core/l10n/zh_TW.php | 5 + l10n/ach/files.po | 74 +++++----- l10n/ach/lib.po | 53 ++++--- l10n/ach/settings.po | 72 +++++---- l10n/ady/files.po | 74 +++++----- l10n/ady/lib.po | 53 ++++--- l10n/ady/settings.po | 72 +++++---- l10n/af_ZA/core.po | 101 ++++++------- l10n/af_ZA/files.po | 74 +++++----- l10n/af_ZA/lib.po | 55 ++++--- l10n/af_ZA/settings.po | 76 ++++++---- l10n/af_ZA/user_ldap.po | 28 ++-- l10n/ak/files.po | 74 +++++----- l10n/ak/lib.po | 53 ++++--- l10n/ak/settings.po | 72 +++++---- l10n/am_ET/files.po | 74 +++++----- l10n/am_ET/lib.po | 53 ++++--- l10n/am_ET/settings.po | 72 +++++---- l10n/ar/files.po | 74 +++++----- l10n/ar/lib.po | 53 ++++--- l10n/ar/settings.po | 72 +++++---- l10n/ast/files.po | 74 +++++----- l10n/ast/lib.po | 53 ++++--- l10n/ast/settings.po | 72 +++++---- l10n/az/files.po | 74 +++++----- l10n/az/lib.po | 53 ++++--- l10n/az/settings.po | 72 +++++---- l10n/be/files.po | 74 +++++----- l10n/be/lib.po | 53 ++++--- l10n/be/settings.po | 72 +++++---- l10n/bg_BG/files.po | 74 +++++----- l10n/bg_BG/files_sharing.po | 8 +- l10n/bg_BG/lib.po | 53 ++++--- l10n/bg_BG/settings.po | 72 +++++---- l10n/bn_BD/files.po | 74 +++++----- l10n/bn_BD/lib.po | 53 ++++--- l10n/bn_BD/settings.po | 72 +++++---- l10n/bs/files.po | 74 +++++----- l10n/bs/lib.po | 53 ++++--- l10n/bs/settings.po | 72 +++++---- l10n/ca/files.po | 74 +++++----- l10n/ca/lib.po | 53 ++++--- l10n/ca/settings.po | 72 +++++---- l10n/cs_CZ/files.po | 77 +++++----- l10n/cs_CZ/lib.po | 66 +++++---- l10n/cs_CZ/settings.po | 74 ++++++---- l10n/cy_GB/files.po | 74 +++++----- l10n/cy_GB/lib.po | 53 ++++--- l10n/cy_GB/settings.po | 72 +++++---- l10n/da/files.po | 74 +++++----- l10n/da/lib.po | 53 ++++--- l10n/da/settings.po | 72 +++++---- l10n/de/files.po | 76 +++++----- l10n/de/lib.po | 91 +++++++----- l10n/de/settings.po | 74 ++++++---- l10n/de_AT/files.po | 74 +++++----- l10n/de_AT/lib.po | 53 ++++--- l10n/de_AT/settings.po | 72 +++++---- l10n/de_CH/files.po | 74 +++++----- l10n/de_CH/lib.po | 53 ++++--- l10n/de_CH/settings.po | 72 +++++---- l10n/de_DE/files.po | 74 +++++----- l10n/de_DE/lib.po | 91 +++++++----- l10n/de_DE/settings.po | 74 ++++++---- l10n/el/files.po | 74 +++++----- l10n/el/lib.po | 53 ++++--- l10n/el/settings.po | 72 +++++---- l10n/en@pirate/files.po | 74 +++++----- l10n/en@pirate/lib.po | 53 ++++--- l10n/en@pirate/settings.po | 72 +++++---- l10n/en_GB/files.po | 76 +++++----- l10n/en_GB/lib.po | 89 ++++++----- l10n/en_GB/settings.po | 74 ++++++---- l10n/eo/files.po | 74 +++++----- l10n/eo/lib.po | 53 ++++--- l10n/eo/settings.po | 72 +++++---- l10n/es/files.po | 79 +++++----- l10n/es/lib.po | 82 ++++++----- l10n/es/settings.po | 73 +++++---- l10n/es/user_ldap.po | 33 +++-- l10n/es_AR/core.po | 38 ++--- l10n/es_AR/files.po | 74 +++++----- l10n/es_AR/files_encryption.po | 51 +++---- l10n/es_AR/files_external.po | 16 +- l10n/es_AR/lib.po | 53 ++++--- l10n/es_AR/settings.po | 135 ++++++++++------- l10n/es_AR/user_ldap.po | 43 +++--- l10n/es_CL/files.po | 78 +++++----- l10n/es_CL/files_external.po | 16 +- l10n/es_CL/lib.po | 53 ++++--- l10n/es_CL/settings.po | 72 +++++---- l10n/es_CR/files.po | 74 +++++----- l10n/es_CR/lib.po | 53 ++++--- l10n/es_CR/settings.po | 72 +++++---- l10n/es_MX/files.po | 74 +++++----- l10n/es_MX/lib.po | 53 ++++--- l10n/es_MX/settings.po | 72 +++++---- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 76 +++++----- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/lib.po | 71 +++++---- l10n/et_EE/settings.po | 74 ++++++---- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/files.po | 74 +++++----- l10n/eu/lib.po | 53 ++++--- l10n/eu/settings.po | 72 +++++---- l10n/eu_ES/files.po | 74 +++++----- l10n/eu_ES/lib.po | 53 ++++--- l10n/eu_ES/settings.po | 72 +++++---- l10n/fa/files.po | 74 +++++----- l10n/fa/lib.po | 53 ++++--- l10n/fa/settings.po | 72 +++++---- l10n/fi_FI/files.po | 81 +++++----- l10n/fi_FI/lib.po | 81 +++++----- l10n/fi_FI/settings.po | 76 ++++++---- l10n/fr/files.po | 76 +++++----- l10n/fr/lib.po | 82 ++++++----- l10n/fr/settings.po | 74 ++++++---- l10n/fr_CA/files.po | 74 +++++----- l10n/fr_CA/lib.po | 53 ++++--- l10n/fr_CA/settings.po | 72 +++++---- l10n/gl/files.po | 76 +++++----- l10n/gl/lib.po | 89 ++++++----- l10n/gl/settings.po | 74 ++++++---- l10n/he/files.po | 74 +++++----- l10n/he/lib.po | 53 ++++--- l10n/he/settings.po | 72 +++++---- l10n/hi/files.po | 74 +++++----- l10n/hi/lib.po | 53 ++++--- l10n/hi/settings.po | 72 +++++---- l10n/hr/files.po | 74 +++++----- l10n/hr/lib.po | 53 ++++--- l10n/hr/settings.po | 72 +++++---- l10n/hu_HU/files.po | 74 +++++----- l10n/hu_HU/lib.po | 55 ++++--- l10n/hu_HU/settings.po | 74 ++++++---- l10n/hy/files.po | 74 +++++----- l10n/hy/lib.po | 53 ++++--- l10n/hy/settings.po | 72 +++++---- l10n/ia/core.po | 213 ++++++++++++++------------- l10n/ia/files.po | 76 +++++----- l10n/ia/files_external.po | 16 +- l10n/ia/lib.po | 73 +++++---- l10n/ia/settings.po | 86 ++++++----- l10n/ia/user_ldap.po | 28 ++-- l10n/id/files.po | 74 +++++----- l10n/id/lib.po | 53 ++++--- l10n/id/settings.po | 72 +++++---- l10n/is/files.po | 74 +++++----- l10n/is/lib.po | 53 ++++--- l10n/is/settings.po | 72 +++++---- l10n/it/files.po | 76 +++++----- l10n/it/lib.po | 85 ++++++----- l10n/it/settings.po | 74 ++++++---- l10n/ja/files.po | 74 +++++----- l10n/ja/lib.po | 53 ++++--- l10n/ja/settings.po | 72 +++++---- l10n/jv/files.po | 74 +++++----- l10n/jv/lib.po | 53 ++++--- l10n/jv/settings.po | 72 +++++---- l10n/ka_GE/files.po | 74 +++++----- l10n/ka_GE/lib.po | 53 ++++--- l10n/ka_GE/settings.po | 72 +++++---- l10n/km/files.po | 74 +++++----- l10n/km/lib.po | 53 ++++--- l10n/km/settings.po | 72 +++++---- l10n/kn/files.po | 74 +++++----- l10n/kn/lib.po | 53 ++++--- l10n/kn/settings.po | 72 +++++---- l10n/ko/files.po | 74 +++++----- l10n/ko/lib.po | 53 ++++--- l10n/ko/settings.po | 72 +++++---- l10n/ku_IQ/files.po | 74 +++++----- l10n/ku_IQ/lib.po | 53 ++++--- l10n/ku_IQ/settings.po | 72 +++++---- l10n/lb/files.po | 74 +++++----- l10n/lb/lib.po | 53 ++++--- l10n/lb/settings.po | 72 +++++---- l10n/lt_LT/files.po | 74 +++++----- l10n/lt_LT/lib.po | 53 ++++--- l10n/lt_LT/settings.po | 72 +++++---- l10n/lv/files.po | 74 +++++----- l10n/lv/lib.po | 53 ++++--- l10n/lv/settings.po | 72 +++++---- l10n/mk/files.po | 74 +++++----- l10n/mk/lib.po | 53 ++++--- l10n/mk/settings.po | 72 +++++---- l10n/ml/files.po | 74 +++++----- l10n/ml/lib.po | 53 ++++--- l10n/ml/settings.po | 72 +++++---- l10n/ml_IN/files.po | 74 +++++----- l10n/ml_IN/lib.po | 53 ++++--- l10n/ml_IN/settings.po | 72 +++++---- l10n/mn/files.po | 74 +++++----- l10n/mn/lib.po | 53 ++++--- l10n/mn/settings.po | 72 +++++---- l10n/ms_MY/files.po | 74 +++++----- l10n/ms_MY/lib.po | 53 ++++--- l10n/ms_MY/settings.po | 72 +++++---- l10n/my_MM/files.po | 74 +++++----- l10n/my_MM/lib.po | 53 ++++--- l10n/my_MM/settings.po | 72 +++++---- l10n/nb_NO/files.po | 74 +++++----- l10n/nb_NO/lib.po | 53 ++++--- l10n/nb_NO/settings.po | 72 +++++---- l10n/nds/files.po | 74 +++++----- l10n/nds/lib.po | 53 ++++--- l10n/nds/settings.po | 72 +++++---- l10n/ne/files.po | 74 +++++----- l10n/ne/lib.po | 53 ++++--- l10n/ne/settings.po | 72 +++++---- l10n/nl/files.po | 76 +++++----- l10n/nl/lib.po | 53 ++++--- l10n/nl/settings.po | 74 ++++++---- l10n/nn_NO/files.po | 74 +++++----- l10n/nn_NO/lib.po | 53 ++++--- l10n/nn_NO/settings.po | 72 +++++---- l10n/nqo/files.po | 74 +++++----- l10n/nqo/lib.po | 53 ++++--- l10n/nqo/settings.po | 72 +++++---- l10n/oc/files.po | 74 +++++----- l10n/oc/lib.po | 53 ++++--- l10n/oc/settings.po | 72 +++++---- l10n/or_IN/files.po | 74 +++++----- l10n/or_IN/lib.po | 53 ++++--- l10n/or_IN/settings.po | 72 +++++---- l10n/pa/files.po | 74 +++++----- l10n/pa/lib.po | 53 ++++--- l10n/pa/settings.po | 72 +++++---- l10n/pl/files.po | 76 +++++----- l10n/pl/lib.po | 89 ++++++----- l10n/pl/settings.po | 74 ++++++---- l10n/pt_BR/files.po | 76 +++++----- l10n/pt_BR/lib.po | 89 ++++++----- l10n/pt_BR/settings.po | 74 ++++++---- l10n/pt_PT/files.po | 74 +++++----- l10n/pt_PT/files_encryption.po | 56 +++---- l10n/pt_PT/lib.po | 53 ++++--- l10n/pt_PT/settings.po | 72 +++++---- l10n/ro/core.po | 32 ++-- l10n/ro/files.po | 97 ++++++------ l10n/ro/lib.po | 53 ++++--- l10n/ro/settings.po | 151 +++++++++++-------- l10n/ru/files.po | 74 +++++----- l10n/ru/lib.po | 53 ++++--- l10n/ru/settings.po | 72 +++++---- l10n/si_LK/files.po | 74 +++++----- l10n/si_LK/lib.po | 53 ++++--- l10n/si_LK/settings.po | 72 +++++---- l10n/sk/files.po | 74 +++++----- l10n/sk/lib.po | 53 ++++--- l10n/sk/settings.po | 72 +++++---- l10n/sk_SK/files.po | 74 +++++----- l10n/sk_SK/lib.po | 53 ++++--- l10n/sk_SK/settings.po | 72 +++++---- l10n/sl/files.po | 76 +++++----- l10n/sl/lib.po | 73 +++++---- l10n/sl/settings.po | 82 +++++++---- l10n/sq/files.po | 74 +++++----- l10n/sq/lib.po | 53 ++++--- l10n/sq/settings.po | 72 +++++---- l10n/sr/files.po | 74 +++++----- l10n/sr/lib.po | 53 ++++--- l10n/sr/settings.po | 72 +++++---- l10n/sr@latin/files.po | 74 +++++----- l10n/sr@latin/lib.po | 53 ++++--- l10n/sr@latin/settings.po | 72 +++++---- l10n/su/files.po | 74 +++++----- l10n/su/lib.po | 53 ++++--- l10n/su/settings.po | 72 +++++---- l10n/sv/core.po | 35 ++--- l10n/sv/files.po | 77 +++++----- l10n/sv/files_external.po | 23 +-- l10n/sv/lib.po | 90 ++++++----- l10n/sv/settings.po | 77 ++++++---- l10n/sw_KE/files.po | 74 +++++----- l10n/sw_KE/lib.po | 53 ++++--- l10n/sw_KE/settings.po | 72 +++++---- l10n/ta_LK/files.po | 74 +++++----- l10n/ta_LK/lib.po | 53 ++++--- l10n/ta_LK/settings.po | 72 +++++---- l10n/te/files.po | 74 +++++----- l10n/te/lib.po | 53 ++++--- l10n/te/settings.po | 72 +++++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 72 ++++----- 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 | 51 ++++--- l10n/templates/private.pot | 43 +++--- l10n/templates/settings.pot | 70 +++++---- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 74 +++++----- l10n/th_TH/lib.po | 53 ++++--- l10n/th_TH/settings.po | 72 +++++---- l10n/tr/files.po | 76 +++++----- l10n/tr/lib.po | 89 ++++++----- l10n/tr/settings.po | 74 ++++++---- l10n/tzm/files.po | 74 +++++----- l10n/tzm/lib.po | 53 ++++--- l10n/tzm/settings.po | 72 +++++---- l10n/ug/files.po | 74 +++++----- l10n/ug/lib.po | 53 ++++--- l10n/ug/settings.po | 72 +++++---- l10n/uk/core.po | 45 +++--- l10n/uk/files.po | 74 +++++----- l10n/uk/lib.po | 53 ++++--- l10n/uk/settings.po | 80 ++++++---- l10n/ur/files.po | 74 +++++----- l10n/ur/lib.po | 53 ++++--- l10n/ur/settings.po | 72 +++++---- l10n/ur_PK/files.po | 74 +++++----- l10n/ur_PK/lib.po | 53 ++++--- l10n/ur_PK/settings.po | 72 +++++---- l10n/uz/files.po | 74 +++++----- l10n/uz/lib.po | 53 ++++--- l10n/uz/settings.po | 72 +++++---- l10n/vi/files.po | 74 +++++----- l10n/vi/lib.po | 53 ++++--- l10n/vi/settings.po | 72 +++++---- l10n/zh_CN/files.po | 74 +++++----- l10n/zh_CN/lib.po | 53 ++++--- l10n/zh_CN/settings.po | 72 +++++---- l10n/zh_HK/files.po | 74 +++++----- l10n/zh_HK/lib.po | 53 ++++--- l10n/zh_HK/settings.po | 72 +++++---- l10n/zh_TW/core.po | 38 ++--- l10n/zh_TW/files.po | 74 +++++----- l10n/zh_TW/files_encryption.po | 54 +++---- l10n/zh_TW/files_external.po | 16 +- l10n/zh_TW/lib.po | 53 ++++--- l10n/zh_TW/settings.po | 181 +++++++++++++---------- lib/l10n/af_ZA.php | 1 + lib/l10n/cs_CZ.php | 6 + lib/l10n/de.php | 18 +++ lib/l10n/de_DE.php | 18 +++ lib/l10n/en_GB.php | 18 +++ lib/l10n/es.php | 14 ++ lib/l10n/et_EE.php | 9 ++ lib/l10n/fi_FI.php | 14 ++ lib/l10n/fr.php | 14 ++ lib/l10n/gl.php | 18 +++ lib/l10n/ia.php | 14 +- lib/l10n/it.php | 16 ++ lib/l10n/pl.php | 18 +++ lib/l10n/pt_BR.php | 18 +++ lib/l10n/sl.php | 10 ++ lib/l10n/sv.php | 18 +++ lib/l10n/tr.php | 18 +++ settings/l10n/af_ZA.php | 2 + settings/l10n/es.php | 1 + settings/l10n/es_AR.php | 32 ++++ settings/l10n/fi_FI.php | 1 + settings/l10n/ia.php | 7 + settings/l10n/ro.php | 40 +++++ settings/l10n/sl.php | 6 + settings/l10n/sv.php | 5 +- settings/l10n/uk.php | 4 + settings/l10n/zh_TW.php | 55 +++++++ 419 files changed, 12829 insertions(+), 9772 deletions(-) create mode 100644 apps/files_external/l10n/es_CL.php diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index e93f1b644a..6938da220b 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "No hi ha resposta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", "URL cannot be empty" => "L'URL no pot ser buit", -"In the home folder 'Shared' is a reserved filename" => "A la carpeta inici 'Compartit' és un nom de fitxer reservat", "{new_name} already exists" => "{new_name} ja existeix", "Could not create file" => "No s'ha pogut crear el fitxer", "Could not create folder" => "No s'ha pogut crear la carpeta", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat", "%s could not be renamed" => "%s no es pot canviar el nom", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index e999a58ec6..40bb288ca1 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Nepodařilo se získat výsledek ze serveru.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", "URL cannot be empty" => "URL nemůže zůstat prázdná", -"In the home folder 'Shared' is a reserved filename" => "V osobní složce je název 'Shared' rezervovaný", "{new_name} already exists" => "{new_name} již existuje", "Could not create file" => "Nepodařilo se vytvořit soubor", "Could not create folder" => "Nepodařilo se vytvořit složku", @@ -62,8 +61,8 @@ $TRANSLATIONS = array( "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", -"Invalid folder name. Usage of 'Shared' is reserved." => "Neplatný název složky. Použití 'Shared' je rezervováno.", "%s could not be renamed" => "%s nemůže být přejmenován", +"Upload (max. %s)" => "Nahrát (max. %s)", "File handling" => "Zacházení se soubory", "Maximum upload size" => "Maximální velikost pro odesílání", "max. possible: " => "největší možná: ", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 522ec8dff8..9a6ea9c0dc 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Kunne ikke hente resultat fra server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", "URL cannot be empty" => "URL kan ikke være tom", -"In the home folder 'Shared' is a reserved filename" => "Navnet 'Shared' er reserveret i hjemmemappen.", "{new_name} already exists" => "{new_name} eksisterer allerede", "Could not create file" => "Kunne ikke oprette fil", "Could not create folder" => "Kunne ikke oprette mappe", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ugyldig mappenavn. 'Shared' er reserveret.", "%s could not be renamed" => "%s kunne ikke omdøbes", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimal upload-størrelse", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index f1ef552b47..1d15469dac 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", "URL cannot be empty" => "Die URL darf nicht leer sein", -"In the home folder 'Shared' is a reserved filename" => "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname", "{new_name} already exists" => "{new_name} existiert bereits", "Could not create file" => "Die Datei konnte nicht erstellt werden", "Could not create folder" => "Der Ordner konnte nicht erstellt werden", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6c4830081f..41ca83e6f8 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "URL cannot be empty" => "Die URL darf nicht leer sein", -"In the home folder 'Shared' is a reserved filename" => "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname", "{new_name} already exists" => "{new_name} existiert bereits", "Could not create file" => "Die Datei konnte nicht erstellt werden", "Could not create folder" => "Der Ordner konnte nicht erstellt werden", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 90d73cb411..f103d0621e 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Αδυναμία λήψης αποτελέσματος από το διακομιστή.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", "URL cannot be empty" => "Η URL δεν πρέπει να είναι κενή", -"In the home folder 'Shared' is a reserved filename" => "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα", "{new_name} already exists" => "{new_name} υπάρχει ήδη", "Could not create file" => "Αδυναμία δημιουργίας αρχείου", "Could not create folder" => "Αδυναμία δημιουργίας φακέλου", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", -"Invalid folder name. Usage of 'Shared' is reserved." => "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα.", "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος αποστολής", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index 2084b61c84..93e1007e37 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Could not get result from server.", "File upload is in progress. Leaving the page now will cancel the upload." => "File upload is in progress. Leaving the page now will cancel the upload.", "URL cannot be empty" => "URL cannot be empty", -"In the home folder 'Shared' is a reserved filename" => "In the home folder 'Shared' is a reserved file name", "{new_name} already exists" => "{new_name} already exists", "Could not create file" => "Could not create file", "Could not create folder" => "Could not create folder", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Size", "Modified" => "Modified", -"Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", "Upload (max. %s)" => "Upload (max. %s)", "File handling" => "File handling", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 5ea572956e..fd1d915ea8 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "No se pudo obtener respuesta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", "URL cannot be empty" => "La dirección URL no puede estar vacía", -"In the home folder 'Shared' is a reserved filename" => "En la carpeta home, no se puede usar 'Shared'", "{new_name} already exists" => "{new_name} ya existe", "Could not create file" => "No se pudo crear el archivo", "Could not create folder" => "No se pudo crear la carpeta", @@ -62,8 +61,8 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", +"Upload (max. %s)" => "Subida (máx. %s)", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 19a71e0c9a..4d4a349a10 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "No se pudo obtener resultados del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", "URL cannot be empty" => "La URL no puede estar vacía", -"In the home folder 'Shared' is a reserved filename" => "En el directorio inicial 'Shared' es un nombre de archivo reservado", "{new_name} already exists" => "{new_name} ya existe", "Could not create file" => "No se pudo crear el archivo", "Could not create folder" => "No se pudo crear el directorio", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de directorio inválido. 'Shared' está reservado.", "%s could not be renamed" => "No se pudo renombrar %s", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php index 98606b4cd8..fa856ad529 100644 --- a/apps/files/l10n/es_CL.php +++ b/apps/files/l10n/es_CL.php @@ -2,10 +2,12 @@ $TRANSLATIONS = array( "Files" => "Archivos", "Share" => "Compartir", +"Rename" => "Renombrar", "Error" => "Error", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"New folder" => "Nuevo directorio", "Download" => "Descargar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index a55a70c166..f5f773c760 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "No se pudo obtener respuesta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", "URL cannot be empty" => "La dirección URL no puede estar vacía", -"In the home folder 'Shared' is a reserved filename" => "En la carpeta de inicio, 'Shared' es un nombre reservado", "{new_name} already exists" => "{new_name} ya existe", "Could not create file" => "No se pudo crear el archivo", "Could not create folder" => "No se pudo crear la carpeta", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index ed16e38ac7..4af93fa9ba 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Serverist ei saadud tulemusi", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", "URL cannot be empty" => "URL ei saa olla tühi", -"In the home folder 'Shared' is a reserved filename" => "Kodukataloogis 'Shared' on reserveeritud failinimi", "{new_name} already exists" => "{new_name} on juba olemas", "Could not create file" => "Ei suuda luua faili", "Could not create folder" => "Ei suuda luua kataloogi", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", -"Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload (max. %s)" => "Üleslaadimine (max. %s)", "File handling" => "Failide käsitlemine", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 26e2a34e4a..e1bb7033eb 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ezin da zerbitzaritik emaitzik lortu", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", "URL cannot be empty" => "URLa ezin da hutsik egon", -"In the home folder 'Shared' is a reserved filename" => "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da", "{new_name} already exists" => "{new_name} dagoeneko existitzen da", "Could not create file" => "Ezin izan da fitxategia sortu", "Could not create folder" => "Ezin izan da karpeta sortu", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", -"Invalid folder name. Usage of 'Shared' is reserved." => "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago.", "%s could not be renamed" => "%s ezin da berrizendatu", "File handling" => "Fitxategien kudeaketa", "Maximum upload size" => "Igo daitekeen gehienezko tamaina", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 97216ff869..ba3c921dfe 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -53,12 +53,13 @@ $TRANSLATIONS = array( "\"{name}\" is an invalid file name." => "\"{name}\" on virheellinen tiedostonimi.", "Your storage is full, files can not be updated or synced anymore!" => "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!", "Your storage is almost full ({usedSpacePercent}%)" => "Tallennustila on melkein loppu ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Salaussovelluksen salausavain on virheellinen. Ole hyvä ja päivitä salausavain henkilökohtaisissa asetuksissasi jotta voit taas avata salatuskirjoitetut tiedostosi.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen.", "Your download is being prepared. This might take some time if the files are big." => "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan.", "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muokattu", -"Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", "%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", "Upload (max. %s)" => "Lähetys (enintään %s)", "File handling" => "Tiedostonhallinta", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 356ce574ed..26ba8445f4 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ne peut recevoir les résultats du serveur.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "URL cannot be empty" => "L'URL ne peut pas être vide", -"In the home folder 'Shared' is a reserved filename" => "Dans le dossier home, 'Partagé' est un nom de fichier réservé", "{new_name} already exists" => "{new_name} existe déjà", "Could not create file" => "Impossible de créer le fichier", "Could not create folder" => "Impossible de créer le dossier", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", "Upload (max. %s)" => "Envoi (max. %s)", "File handling" => "Gestion des fichiers", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 152bdfd7fd..d9c6d00360 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Non foi posíbel obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío.", "URL cannot be empty" => "O URL non pode quedar en branco.", -"In the home folder 'Shared' is a reserved filename" => "«Shared» dentro do cartafol persoal é un nome reservado", "{new_name} already exists" => "Xa existe un {new_name}", "Could not create file" => "Non foi posíbel crear o ficheiro", "Could not create folder" => "Non foi posíbel crear o cartafol", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", "Upload (max. %s)" => "Envío (máx. %s)", "File handling" => "Manexo de ficheiro", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 0f9a903e2b..9ed0032682 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "A kiszolgálótól nem kapható meg az eredmény.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", "URL cannot be empty" => "Az URL-cím nem maradhat kitöltetlenül", -"In the home folder 'Shared' is a reserved filename" => "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név", "{new_name} already exists" => "{new_name} már létezik", "Could not create file" => "Az állomány nem hozható létre", "Could not create folder" => "A mappa nem hozható létre", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", -"Invalid folder name. Usage of 'Shared' is reserved." => "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés.", "%s could not be renamed" => "%s átnevezése nem sikerült", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index da1cafaa29..ff4cb0225b 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Save" => "Salveguardar", "New" => "Nove", "Text file" => "File de texto", +"New folder" => "Nove dossier", "Folder" => "Dossier", "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", "Download" => "Discargar", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 40699ba886..d8c0a47789 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -30,7 +30,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Tidak mendapatkan hasil dari server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses.", "URL cannot be empty" => "URL tidak boleh kosong", -"In the home folder 'Shared' is a reserved filename" => "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan", "{new_name} already exists" => "{new_name} sudah ada", "Could not create file" => "Tidak dapat membuat berkas", "Could not create folder" => "Tidak dapat membuat folder", @@ -55,7 +54,6 @@ $TRANSLATIONS = array( "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan.", "%s could not be renamed" => "%s tidak dapat diubah nama", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 0ec7e34f7a..c77fb57c59 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Impossibile ottenere il risultato dal server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", "URL cannot be empty" => "L'URL non può essere vuoto.", -"In the home folder 'Shared' is a reserved filename" => "Nella cartella home 'Shared' è un nome riservato", "{new_name} already exists" => "{new_name} esiste già", "Could not create file" => "Impossibile creare il file", "Could not create folder" => "Impossibile creare la cartella", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", "Upload (max. %s)" => "Carica (massimo %s)", "File handling" => "Gestione file", diff --git a/apps/files/l10n/ja.php b/apps/files/l10n/ja.php index 7606a8d4b1..361fd835ce 100644 --- a/apps/files/l10n/ja.php +++ b/apps/files/l10n/ja.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "サーバーから結果を取得できませんでした。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "URL cannot be empty" => "URL は空にできません", -"In the home folder 'Shared' is a reserved filename" => "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です", "{new_name} already exists" => "{new_name} はすでに存在します", "Could not create file" => "ファイルを作成できませんでした", "Could not create folder" => "フォルダーを作成できませんでした", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "名前", "Size" => "サイズ", "Modified" => "更新日時", -"Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダー名。「Shared」の利用は予約されています。", "%s could not be renamed" => "%sの名前を変更できませんでした", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 3c8a72097f..21c7ebcdc4 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "서버에서 결과를 가져올 수 없습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", "URL cannot be empty" => "URL이 비어있을 수 없음", -"In the home folder 'Shared' is a reserved filename" => "'공유됨'은 홈 폴더의 예약된 파일 이름임", "{new_name} already exists" => "{new_name}이(가) 이미 존재함", "Could not create file" => "파일을 만들 수 없음", "Could not create folder" => "폴더를 만들 수 없음", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", -"Invalid folder name. Usage of 'Shared' is reserved." => "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다.", "%s could not be renamed" => "%s의 이름을 변경할 수 없습니다", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index fee09cf2d8..a8c30016d3 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Nepavyko gauti rezultato iš serverio.", "File upload is in progress. Leaving the page now will cancel the upload." => "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks.", "URL cannot be empty" => "URL negali būti tuščias.", -"In the home folder 'Shared' is a reserved filename" => "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas", "{new_name} already exists" => "{new_name} jau egzistuoja", "Could not create file" => "Neįmanoma sukurti failo", "Could not create folder" => "Neįmanoma sukurti aplanko", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", -"Invalid folder name. Usage of 'Shared' is reserved." => "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas.", "%s could not be renamed" => "%s negali būti pervadintas", "File handling" => "Failų tvarkymas", "Maximum upload size" => "Maksimalus įkeliamo failo dydis", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index c303e51511..e1ff2c0bc2 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Не можам да добијам резултат од серверот.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", "URL cannot be empty" => "URL-то не може да биде празно", -"In the home folder 'Shared' is a reserved filename" => "Во домашната папка, 'Shared' е резервирано има на датотека/папка", "{new_name} already exists" => "{new_name} веќе постои", "Could not create file" => "Не множам да креирам датотека", "Could not create folder" => "Не можам да креирам папка", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 878d4df822..9887087cca 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Fikk ikke resultat fra serveren.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", "URL cannot be empty" => "URL kan ikke være tom", -"In the home folder 'Shared' is a reserved filename" => "I hjemmemappen er 'Shared' et reservert filnavn", "{new_name} already exists" => "{new_name} finnes allerede", "Could not create file" => "Klarte ikke å opprette fil", "Could not create folder" => "Klarte ikke å opprette mappe", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ulovlig mappenavn. Bruken av 'Shared' er reservert.", "%s could not be renamed" => "Kunne ikke gi nytt navn til %s", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimum opplastingsstørrelse", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 746c5b9c00..e33d26e38d 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Kon het resultaat van de server niet terugkrijgen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "URL cannot be empty" => "URL mag niet leeg zijn", -"In the home folder 'Shared' is a reserved filename" => "in de home map 'Shared' is een gereserveerde bestandsnaam", "{new_name} already exists" => "{new_name} bestaat al", "Could not create file" => "Kon bestand niet creëren", "Could not create folder" => "Kon niet creëren map", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", "Upload (max. %s)" => "Upload (max. %s)", "File handling" => "Bestand", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index d0d05564d1..30c3496db3 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Nie można uzyskać wyniku z serwera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane.", "URL cannot be empty" => "URL nie może być pusty", -"In the home folder 'Shared' is a reserved filename" => "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku", "{new_name} already exists" => "{new_name} już istnieje", "Could not create file" => "Nie można utworzyć pliku", "Could not create folder" => "Nie można utworzyć folderu", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", -"Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", "Upload (max. %s)" => "Wysyłka (max. %s)", "File handling" => "Zarządzanie plikami", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index d0b741196d..10d8892e18 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "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." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", "URL cannot be empty" => "URL não pode estar vazia", -"In the home folder 'Shared' is a reserved filename" => "Na pasta home 'Shared- Compartilhada' é um nome reservado", "{new_name} already exists" => "{new_name} já existe", "Could not create file" => "Não foi possível criar o arquivo", "Could not create folder" => "Não foi possível criar a pasta", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", "Upload (max. %s)" => "Envio (max. %s)", "File handling" => "Tratamento de Arquivo", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 8c58c6458c..c24d2cf8f3 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "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" => "URL não pode estar vazio", -"In the home folder 'Shared' is a reserved filename" => "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado", "{new_name} already exists" => "O nome {new_name} já existe", "Could not create file" => "Não pôde criar ficheiro", "Could not create folder" => "Não pôde criar pasta", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada.", "%s could not be renamed" => "%s não pode ser renomeada", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 998e58375e..d3927f5daf 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -3,7 +3,10 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s" => "Nu se poate muta %s", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", +"\"%s\" is an invalid file name." => "\"%s\" este un nume de fișier nevalid", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise.", +"The target folder has been moved or deleted." => "Dosarul țintă a fost mutat sau șters.", +"Not a valid source" => "Sursă nevalidă", "Error while downloading %s to %s" => "Eroare la descarcarea %s in %s", "Error when creating the file" => "Eroare la crearea fisierului", "Folder name cannot be empty." => "Numele folderului nu poate fi liber.", @@ -24,6 +27,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Dosar nevalid.", "Files" => "Fișiere", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nu se poate încărca {filename} deoarece este un director sau are mărimea de 0 octeți", +"Total file size {size1} exceeds upload limit {size2}" => "Mărimea fișierului este {size1} ce depășește limita de incarcare de {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Spațiu liber insuficient, încărcați {size1} însă doar {size2} disponibil rămas", "Upload cancelled." => "Încărcare anulată.", "Could not get result from server." => "Nu se poate obține rezultatul de la server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", @@ -31,6 +36,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} există deja", "Could not create file" => "Nu s-a putut crea fisierul", "Could not create folder" => "Nu s-a putut crea folderul", +"Error fetching URL" => "Eroare încarcare URL", "Share" => "Partajează", "Delete permanently" => "Șterge permanent", "Rename" => "Redenumește", @@ -38,10 +44,12 @@ $TRANSLATIONS = array( "Error" => "Eroare", "Pending" => "În așteptare", "Could not rename file" => "Nu s-a putut redenumi fisierul", +"Error deleting file." => "Eroare la ștergerea fisierului.", "_%n folder_::_%n folders_" => array("%n director","%n directoare","%n directoare"), "_%n file_::_%n files_" => array("%n fișier","%n fișiere","%n fișiere"), "{dirs} and {files}" => "{dirs} și {files}", "_Uploading %n file_::_Uploading %n files_" => array("Se încarcă %n fișier.","Se încarcă %n fișiere.","Se încarcă %n fișiere."), +"\"{name}\" is an invalid file name." => "\"{name}\" este un nume de fișier nevalid.", "Your storage is full, files can not be updated or synced anymore!" => "Spațiul de stocare este plin, fișierele nu mai pot fi actualizate sau sincronizate!", "Your storage is almost full ({usedSpacePercent}%)" => "Spațiul de stocare este aproape plin ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele", @@ -50,6 +58,7 @@ $TRANSLATIONS = array( "Size" => "Mărime", "Modified" => "Modificat", "%s could not be renamed" => "%s nu a putut fi redenumit", +"Upload (max. %s)" => "Încarcă (max. %s)", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", "max. possible: " => "max. posibil:", @@ -59,7 +68,9 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Dimensiunea maximă de intrare pentru fișierele ZIP", "Save" => "Salvează", "New" => "Nou", +"New text file" => "Un nou fișier text", "Text file" => "Fișier text", +"New folder" => "Un nou dosar", "Folder" => "Dosar", "From link" => "De la adresa", "Deleted files" => "Fișiere șterse", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 4586a73dc3..a9430276e4 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Не удалось получить ответ от сервера.", "File upload is in progress. Leaving the page now will cancel the upload." => "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку.", "URL cannot be empty" => "Ссылка не может быть пустой.", -"In the home folder 'Shared' is a reserved filename" => "'Shared' - это зарезервированное имя файла в домашнем каталоге", "{new_name} already exists" => "{new_name} уже существует", "Could not create file" => "Не удалось создать файл", "Could not create folder" => "Не удалось создать каталог", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Имя", "Size" => "Размер", "Modified" => "Дата изменения", -"Invalid folder name. Usage of 'Shared' is reserved." => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "%s could not be renamed" => "%s не может быть переименован", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 2e079b4ce7..6c46bbd7fa 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Nepodarilo sa dostať výsledky zo servera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", "URL cannot be empty" => "URL nemôže byť prázdna", -"In the home folder 'Shared' is a reserved filename" => "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru", "{new_name} already exists" => "{new_name} už existuje", "Could not create file" => "Nemožno vytvoriť súbor", "Could not create folder" => "Nemožno vytvoriť priečinok", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Názov", "Size" => "Veľkosť", "Modified" => "Upravené", -"Invalid folder name. Usage of 'Shared' is reserved." => "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené.", "%s could not be renamed" => "%s nemohol byť premenovaný", "File handling" => "Nastavenie správania sa k súborom", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fbd667226c..ac304d992c 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ni mogoče pridobiti podatkov s strežnika.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", "URL cannot be empty" => "Polje naslova URL ne sme biti prazno", -"In the home folder 'Shared' is a reserved filename" => "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo.", "{new_name} already exists" => "{new_name} že obstaja", "Could not create file" => "Ni mogoče ustvariti datoteke", "Could not create folder" => "Ni mogoče ustvariti mape", @@ -62,8 +61,8 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", -"Invalid folder name. Usage of 'Shared' is reserved." => "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo.", "%s could not be renamed" => "%s ni mogoče preimenovati", +"Upload (max. %s)" => "Pošiljanje (omejitev %s)", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", "max. possible: " => "največ mogoče:", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 811e568fef..f3d0170a30 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Gick inte att hämta resultat från server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", "URL cannot be empty" => "URL kan ej vara tomt", -"In the home folder 'Shared' is a reserved filename" => "I hemma katalogen 'Delat' är ett reserverat filnamn", "{new_name} already exists" => "{new_name} finns redan", "Could not create file" => "Kunde ej skapa fil", "Could not create folder" => "Kunde ej skapa katalog", @@ -62,8 +61,8 @@ $TRANSLATIONS = array( "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "%s could not be renamed" => "%s kunde inte namnändras", +"Upload (max. %s)" => "Ladda upp (max. %s)", "File handling" => "Filhantering", "Maximum upload size" => "Maximal storlek att ladda upp", "max. possible: " => "max. möjligt:", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 586c81072a..77c310fc9e 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Sunucudan sonuç alınamadı.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", "URL cannot be empty" => "URL boş olamaz", -"In the home folder 'Shared' is a reserved filename" => "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır", "{new_name} already exists" => "{new_name} zaten mevcut", "Could not create file" => "Dosya oluşturulamadı", "Could not create folder" => "Klasör oluşturulamadı", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", -"Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload (max. %s)" => "Yükle (azami: %s)", "File handling" => "Dosya işlemleri", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 59623bffd1..82cc68a499 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "不能从服务器得到结果", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "URL cannot be empty" => "URL不能为空", -"In the home folder 'Shared' is a reserved filename" => "主目录里 'Shared' 是系统预留目录名", "{new_name} already exists" => "{new_name} 已存在", "Could not create file" => "不能创建文件", "Could not create folder" => "不能创建文件夹", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", -"Invalid folder name. Usage of 'Shared' is reserved." => "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹", "%s could not be renamed" => "%s 不能被重命名", "File handling" => "文件处理", "Maximum upload size" => "最大上传大小", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 3668b37d64..92bc13189d 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -30,7 +30,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "無法從伺服器取回結果", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中,離開此頁面將會取消上傳。", "URL cannot be empty" => "URL 不能留空", -"In the home folder 'Shared' is a reserved filename" => "在家目錄中不能使用「共享」作為檔名", "{new_name} already exists" => "{new_name} 已經存在", "Could not create file" => "無法建立檔案", "Could not create folder" => "無法建立資料夾", diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index bc1eedbf5e..b885716f89 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "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 una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no fueron configurados para encriptar:", "Initial encryption started... This can take some time. Please wait." => "Encriptación inicial comenzada... Esto puede durar un tiempo. Por favor espere.", +"Initial encryption running... Please try again later." => "Encriptación inicial corriendo... Por favor intente mas tarde. ", "Go directly to your " => "Ve directamente a tu", "personal settings" => "Configuración personal", "Encryption" => "Encriptación", diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index d6d3c26036..9a1963953e 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -7,8 +7,11 @@ $TRANSLATIONS = array( "Password successfully changed." => "Password alterada com sucesso.", "Could not change the password. Maybe the old password was not correct." => "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta.", "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.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Não foi possível desencriptar este ficheiro, possivelmente é um ficheiro partilhado. Peça ao proprietário do ficheiro para voltar a partilhar o ficheiro consigo.", +"Unknown error please check your system settings or contact your administrator" => "Erro desconhecido. Verifique por favor as definições do sistema ou contacte o seu administrador", "Missing requirements." => "Faltam alguns requisitos.", "Following users are not set up for encryption:" => "Os utilizadores seguintes não estão marcados para cifragem:", +"Go directly to your " => "Ir directamente para o seu", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", "Enable recovery key (allow to recover users files in case of password loss):" => "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):", diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php index 390e6aff8c..84146437ac 100644 --- a/apps/files_encryption/l10n/zh_TW.php +++ b/apps/files_encryption/l10n/zh_TW.php @@ -15,6 +15,8 @@ $TRANSLATIONS = array( "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." => "請確認已安裝 PHP 5.3.3 或是更新的版本以及 OpenSSL 也一併安裝在 PHP extension 裡面並啟用及設置完成。現在,加密功能是停用的。", "Following users are not set up for encryption:" => "以下的使用者無法設定加密:", +"Initial encryption started... This can take some time. Please wait." => "加密初始已啟用...這個需要一些時間。請稍等。", +"Initial encryption running... Please try again later." => "加密初始執行中...請晚點再試。", "Go directly to your " => "直接到您的", "personal settings" => "個人設定", "Encryption" => "加密", diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index f184dbdb7d..9bcff39f01 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Permitir acceso", "Please provide a valid Dropbox app key and secret." => "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox.", "Error configuring Google Drive storage" => "Error al configurar el almacenamiento de Google Drive", +"Saved" => "Guardado", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", diff --git a/apps/files_external/l10n/es_CL.php b/apps/files_external/l10n/es_CL.php new file mode 100644 index 0000000000..f52482cad4 --- /dev/null +++ b/apps/files_external/l10n/es_CL.php @@ -0,0 +1,5 @@ +<?php +$TRANSLATIONS = array( +"Folder name" => "Nombre del directorio" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ia.php b/apps/files_external/l10n/ia.php index 47b0f89b8b..1873f4ad6f 100644 --- a/apps/files_external/l10n/ia.php +++ b/apps/files_external/l10n/ia.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Folder name" => "Nomine de dossier", "Groups" => "Gruppos", "Users" => "Usatores", "Delete" => "Deler" diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index 2992460d28..761e8f880c 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -8,9 +8,9 @@ $TRANSLATIONS = array( "Saved" => "Sparad", "<b>Note:</b> " => "<b> OBS: </ b>", " and " => "och", -"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b> OBS: </ b> cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", -"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b> OBS: </ b> Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", -"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b> OBS: </ b> \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", +"<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b> OBS: </ b> cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det.", +"<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b> OBS: </ b> Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det.", +"<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "<b> OBS: </ b> \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör att installera det.", "External Storage" => "Extern lagring", "Folder name" => "Mappnamn", "External storage" => "Extern lagring", diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index ac480e405f..9a99a12aaa 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "允許存取", "Please provide a valid Dropbox app key and secret." => "請提供有效的 Dropbox app key 和 app secret 。", "Error configuring Google Drive storage" => "設定 Google Drive 儲存時發生錯誤", +"Saved" => "已儲存", "External Storage" => "外部儲存", "Folder name" => "資料夾名稱", "External storage" => "外部儲存", diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php index 4fe5ba6b16..37e2ca3337 100644 --- a/apps/files_sharing/l10n/bg_BG.php +++ b/apps/files_sharing/l10n/bg_BG.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( -"Password" => "Парола" +"Password" => "Парола", +"shared by %s" => "споделено от %s" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/af_ZA.php b/apps/user_ldap/l10n/af_ZA.php index 130e471e0e..483a30b8e4 100644 --- a/apps/user_ldap/l10n/af_ZA.php +++ b/apps/user_ldap/l10n/af_ZA.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), "Help" => "Hulp", -"Password" => "Wagwoord" +"Password" => "Wagwoord", +"Continue" => "Gaan voort" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 2c294aff78..bb1c9acb2a 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Asociación Grupo-Miembro", "Nested Groups" => "Grupos anidados", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Cuando se active, se permitirán grupos que contenga otros grupos (solo funciona si el atributo de miembro de grupo contiene DNs).", +"Paging chunksize" => "Tamaño de los fragmentos de paginación", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Tamaño de los fragmentos usado para búsquedas LDAP paginadas que pueden devolver resultados voluminosos, como enumeración de usuarios o de grupos. (Si se establece en 0, se deshabilitan las búsquedas LDAP paginadas en esas situaciones.)", "Special Attributes" => "Atributos especiales", "Quota Field" => "Cuota", "Quota Default" => "Cuota por defecto", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 877141bcdc..4a8047c6d9 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Guardar", "Test Configuration" => "Probar configuración", "Help" => "Ayuda", +"Groups meeting these criteria are available in %s:" => "Los grupos que cumplen con estos criterios están disponibles en %s:", "only those object classes:" => "solo estos objetos de clases:", "only from those groups:" => "solo provenientes de estos grupos:", "Edit raw filter instead" => "Editar filtro en bruto", "Raw LDAP filter" => "Filtro LDAP en bruto", "The filter specifies which LDAP groups shall have access to the %s instance." => "El filtro especifica qué grupos LDAP deben tener acceso a la instancia %s.", "groups found" => "grupos encontrados", +"Users login with this attribute:" => "Los usuarios inician sesión con este atributo:", "LDAP Username:" => "Nombre de usuario LDAP:", "LDAP Email Address:" => "Correo electrónico LDAP:", "Other Attributes:" => "Otros atributos:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para acceso anónimo, dejá DN y contraseña vacíos.", "One Base DN per line" => "Una DN base por línea", "You can specify Base DN for users and groups in the Advanced tab" => "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"", +"Limit %s access to users meeting these criteria:" => "Limitar acceso %s a los usuarios que cumplen con este criterio:", "The filter specifies which LDAP users shall have access to the %s instance." => "El filtro especifica cuáles usuarios LDAP deben tener acceso a la instancia %s.", "users found" => "usuarios encontrados", "Back" => "Volver", @@ -67,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Puerto para copia de seguridad (réplica)", "Disable Main Server" => "Deshabilitar el Servidor Principal", "Only connect to the replica server." => "Conectarse únicamente al servidor de réplica.", +"Case insensitive LDAP server (Windows)" => "Servidor de LDAP insensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No es recomendado, ¡Usalo solamente para pruebas! Si la conexión únicamente funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor %s.", "Cache Time-To-Live" => "Tiempo de vida del caché", @@ -84,6 +88,9 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Una DN base de grupo por línea", "Group Search Attributes" => "Atributos de búsqueda de grupo", "Group-Member association" => "Asociación Grupo-Miembro", +"Nested Groups" => "Grupos Anidados", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Cuando se activa, grupos que contienen grupos son soportados. (Solo funciona si el atributo de miembro del grupo contiene DNs)", +"Paging chunksize" => "Tamaño del fragmento de paginación", "Special Attributes" => "Atributos Especiales", "Quota Field" => "Campo de cuota", "Quota Default" => "Cuota por defecto", diff --git a/apps/user_ldap/l10n/ia.php b/apps/user_ldap/l10n/ia.php index e138fd835f..b29ecbb1d2 100644 --- a/apps/user_ldap/l10n/ia.php +++ b/apps/user_ldap/l10n/ia.php @@ -7,6 +7,7 @@ $TRANSLATIONS = array( "Save" => "Salveguardar", "Help" => "Adjuta", "Password" => "Contrasigno", -"Back" => "Retro" +"Back" => "Retro", +"Continue" => "Continuar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index c19edebc26..9b24e2dcd4 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"Unknown filetype" => "Onbekende leertipe", +"No temporary profile picture available, try again" => "Geen tydelike profiel foto beskikbaar nie, probeer weer", "Sunday" => "Sondag", "Monday" => "Mandag", "Tuesday" => "Dinsdag", @@ -34,6 +36,8 @@ $TRANSLATIONS = array( "Yes" => "Ja", "No" => "Nee", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Cancel" => "Kanseleer", +"Continue" => "Gaan voort", "Very weak password" => "Baie swak wagwoord", "Weak password" => "Swak wagwoord", "Good password" => "Goeie wagwoord", @@ -41,17 +45,36 @@ $TRANSLATIONS = array( "Shared" => "Gedeel", "Share" => "Deel", "Error" => "Fout", +"Error while changing permissions" => "Fout met verandering van regte", "Shared with you and the group {group} by {owner}" => "Met jou en die groep {group} gedeel deur {owner}", "Shared with you by {owner}" => "Met jou gedeel deur {owner}", +"Password protect" => "Beskerm met Wagwoord", "Password" => "Wagwoord", +"Allow Public Upload" => "Laat Publieke Oplaai toe", "Email link to person" => "E-pos aan persoon", "Send" => "Stuur", +"Set expiration date" => "Stel verval datum", +"Expiration date" => "Verval datum", +"group" => "groep", +"Shared in {item} with {user}" => "Gedeel in {item} met {user}", "can edit" => "kan wysig", +"access control" => "toegang beheer", +"create" => "skep", +"update" => "opdateer", +"delete" => "uitvee", +"share" => "deel", +"Password protected" => "Beskerm met Wagwoord", +"Error setting expiration date" => "Fout met opstel van verval datum", "Sending ..." => "Stuur ...", "Email sent" => "E-pos gestuur", +"Add" => "Voeg by", +"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Die opdateering was nie suksesvol nie. Raporteer die probleem by <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", +"%s password reset" => "%s wagwoord herstel", "Use the following link to reset your password: {link}" => "Gebruik die volgende skakel om jou wagwoord te herstel: {link}", +"Request failed!<br>Did you make sure your email/username was right?" => "Versoek het gefaal!<br>Het jy seker gemaak jou e-pos/gebruiker naam is korrek?", "You will receive a link to reset your password via Email." => "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel.", "Username" => "Gebruikersnaam", +"Yes, I really want to reset my password now" => "Ja, Ek wil regtig my wagwoord herstel", "Your password was reset" => "Jou wagwoord is herstel", "To login page" => "Na aanteken-bladsy", "New password" => "Nuwe wagwoord", @@ -61,15 +84,27 @@ $TRANSLATIONS = array( "Apps" => "Toepassings", "Admin" => "Admin", "Help" => "Hulp", +"Access forbidden" => "Toegang verbode", "Cloud not found" => "Wolk nie gevind", +"Security Warning" => "Sekuriteits waarskuwing", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jou PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Opdateer asseblief jou PHP instelasie om %s veilig te gebruik", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Jou data gids en leers is moontlik toeganklik vanaf die internet omdat die .htaccess leer nie werk nie.", +"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "Vir inligting oor hoe om jou bediener behoorlik op te stel, sien asseblief die<a href=\"%s\" target=\"_blank\">dokumentasie</a>.", "Create an <strong>admin account</strong>" => "Skep `n <strong>admin-rekening</strong>", +"Data folder" => "Data vouer", "Configure the database" => "Stel databasis op", "will be used" => "sal gebruik word", "Database user" => "Databasis-gebruiker", "Database password" => "Databasis-wagwoord", "Database name" => "Databasis naam", +"Database tablespace" => "Databasis tabelspasie", +"Database host" => "Databasis gasheer", "Finish setup" => "Maak opstelling klaar", +"%s is available. Get more information on how to update." => "%s is beskikbaar. Kry meer inligting oor opdatering.", "Log out" => "Teken uit", +"Automatic logon rejected!" => "Automatiese aantekening afgekeur!", +"Please change your password to secure your account again." => "Verander asseblief jou wagwoord om jou rekening te beveilig", "Lost your password?" => "Wagwoord verloor?", "remember" => "onthou", "Log in" => "Teken aan" diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 59e0afbdbe..1bf43449fd 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -56,6 +56,11 @@ $TRANSLATIONS = array( "(all selected)" => "(todos están seleccionados)", "({count} selected)" => "({count} seleccionados)", "Error loading file exists template" => "Error cargando la plantilla de archivo existente", +"Very weak password" => "Contraseña muy débil.", +"Weak password" => "Contraseña débil.", +"So-so password" => "Contraseña de nivel medio. ", +"Good password" => "Buena contraseña. ", +"Strong password" => "Contraseña fuerte.", "Shared" => "Compartido", "Share" => "Compartir", "Error" => "Error", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index cff33a8ff9..ef9c79a654 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -1,5 +1,12 @@ <?php $TRANSLATIONS = array( +"Expiration date is in the past." => "Data de expiration es in le passato.", +"Turned on maintenance mode" => "Activate modo de mantenentia", +"Turned off maintenance mode" => "De-activar modo de mantenentia", +"Updated database" => "Base de datos actualisate", +"No image or file provided" => "Il forniva necun imagine o file", +"Unknown filetype" => "Typo de file incognite", +"Invalid image" => "Imagine invalide", "Sunday" => "Dominica", "Monday" => "Lunedi", "Tuesday" => "Martedi", @@ -20,44 +27,122 @@ $TRANSLATIONS = array( "November" => "Novembre", "December" => "Decembre", "Settings" => "Configurationes", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"Saving..." => "Salveguardante...", +"seconds ago" => "secundas passate", +"_%n minute ago_::_%n minutes ago_" => array("%n minuta passate","%n minutas passate"), +"_%n hour ago_::_%n hours ago_" => array("%n hora passate","%n horas passate"), +"today" => "hodie", +"yesterday" => "heri", "_%n day ago_::_%n days ago_" => array("",""), +"last month" => "ultime mense", "_%n month ago_::_%n months ago_" => array("",""), -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"last year" => "ultime anno", +"years ago" => "annos passate", +"Choose" => "Seliger", +"Yes" => "Si", +"No" => "No", +"Ok" => "Ok", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicto de file","{count} conflictos de file"), +"One file conflict" => "Un conflicto de file", +"New Files" => "Nove files", +"Already existing files" => "Files jam existente", +"Which files do you want to keep?" => "Qual files tu vole mantener?", "Cancel" => "Cancellar", +"Continue" => "Continuar", +"Error loading file exists template" => "Error quando on incargava patrono de file existente", +"Very weak password" => "Contrasigno multo debile", +"Weak password" => "Contrasigno debile", +"So-so password" => "Contrasigno passabile", +"Good password" => "Contrasigno bon", +"Strong password" => "Contrasigno forte", +"Shared" => "Compartite", "Share" => "Compartir", "Error" => "Error", +"Error while sharing" => "Error quando on compartiva", +"Error while unsharing" => "Error quando on levava le compartir", +"Error while changing permissions" => "Error quando on modificava permissiones", +"Shared with you and the group {group} by {owner}" => "Compartite con te e le gruppo {group} per {owner}", +"Shared with you by {owner}" => "Compartite con te per {owner} ", +"Share with user or group …" => "Compartir con usator o gruppo ...", +"Share link" => "Compartir ligamine", +"Password protect" => "Protegite per contrasigno", "Password" => "Contrasigno", +"Allow Public Upload" => "Permitter incargamento public", +"Email link to person" => "Ligamine de e-posta a persona", "Send" => "Invia", +"Set expiration date" => "Fixa data de expiration", +"Expiration date" => "Data de expiration", +"Share via email:" => "Compartir via e-posta:", +"No people found" => "Il trovava nulle persona", "group" => "gruppo", +"Resharing is not allowed" => "Il non es permittite compartir plus que un vice", +"Shared in {item} with {user}" => "Compartite in {item} con {user}", "Unshare" => "Leva compartir", +"notify by email" => "notificar per message de e-posta", "can edit" => "pote modificar", +"access control" => "controlo de accesso", +"create" => "crear", +"update" => "actualisar", +"delete" => "deler", +"share" => "compartir", +"Password protected" => "Proteger con contrasigno", +"Error unsetting expiration date" => "Error quando on levava le data de expiration", +"Error setting expiration date" => "Error quando on fixava le data de expiration", +"Sending ..." => "Inviante ...", +"Email sent" => "Message de e-posta inviate", +"Warning" => "Aviso", +"The object type is not specified." => "Le typo de objecto non es specificate", +"Enter new" => "Inserta nove", "Delete" => "Deler", "Add" => "Adder", +"Edit tags" => "Modifica etiquettas", +"Please reload the page." => "Pro favor recarga le pagina.", +"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Le actualisation terminava sin successo. Pro favor tu reporta iste problema al <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", +"The update was successful. Redirecting you to ownCloud now." => "Le actualisation terminava con successo. On redirige nunc a tu ownCloud.", +"%s password reset" => "%s contrasigno re-fixate", +"A problem has occurred whilst sending the email, please contact your administrator." => "Un problema ha occurrite quando on inviava le message de e-posta, pro favor continge tu administrator.", +"Use the following link to reset your password: {link}" => "Usa le ligamine sequente pro re-fixar tu contrasigno: {link}", "Username" => "Nomine de usator", +"Reset" => "Re-fixar", "Your password was reset" => "Tu contrasigno esseva reinitialisate", "To login page" => "al pagina de initio de session", "New password" => "Nove contrasigno", "Reset password" => "Reinitialisar contrasigno", +"For the best results, please consider using a GNU/Linux server instead." => "Pro le exitos melior, pro favor tu considera usar in loco un servitor GNU/Linux.", "Personal" => "Personal", "Users" => "Usatores", "Apps" => "Applicationes", "Admin" => "Administration", "Help" => "Adjuta", +"Error loading tags" => "Error quando on cargava etiquettas", +"Tag already exists" => "Etiquetta ja existe", "Access forbidden" => "Accesso prohibite", "Cloud not found" => "Nube non trovate", +"The share will expire on %s." => "Le compartir expirara le %s.", +"Cheers!" => "Acclamationes!", +"Security Warning" => "Aviso de securitate", +"Please update your PHP installation to use %s securely." => "Pro favor actualisa tu installation de PHP pro usar %s con securitate.", "Create an <strong>admin account</strong>" => "Crear un <strong>conto de administration</strong>", +"Storage & database" => "Immagazinage & base de datos", "Data folder" => "Dossier de datos", "Configure the database" => "Configurar le base de datos", "will be used" => "essera usate", "Database user" => "Usator de base de datos", "Database password" => "Contrasigno de base de datos", "Database name" => "Nomine de base de datos", +"Database tablespace" => "Spatio de tabella de base de datos", "Database host" => "Hospite de base de datos", +"Finish setup" => "Terminar configuration", +"Finishing …" => "Terminante ...", "Log out" => "Clauder le session", +"Automatic logon rejected!" => "Accesso de autorisation refusate!", +"Please change your password to secure your account again." => "Pro favor modifica tu contrasigno pro asssecurar de nove tu conto", +"Server side authentication failed!" => "Il falleva authentication de latere servitor!", +"Please contact your administrator." => "Pro favor continge tu administrator.", "Lost your password?" => "Tu perdeva le contrasigno?", "remember" => "memora", -"Log in" => "Aperir session" +"Log in" => "Aperir session", +"Alternative Logins" => "Accessos de autorisation alternative", +"Thank you for your patience." => "Gratias pro tu patientia." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 634ef3b764..648e8ba3ea 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "If you select both versions, the copied file will have a number added to its name." => "Dacă alegi ambele versiuni, fișierul copiat va avea un număr atașat la denumirea sa.", "Cancel" => "Anulare", "Continue" => "Continuă", +"Very weak password" => "Parolă foarte slabă", +"Weak password" => "Parolă slabă", "Shared" => "Partajat", "Share" => "Partajează", "Error" => "Eroare", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index d198b0d77c..f24398c662 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -139,9 +139,9 @@ $TRANSLATIONS = array( "Error unfavoriting" => "Fel av favorisering ", "Access forbidden" => "Åtkomst förbjuden", "Cloud not found" => "Hittade inget moln", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där!,\n\nVi vill bara meddela att %s delade %s med dig.\nTitta på den här: %s\n\n", "The share will expire on %s." => "Utdelningen kommer att upphöra %s.", -"Cheers!" => "Vi höres!", +"Cheers!" => "Ha de fint!", "Security Warning" => "Säkerhetsvarning", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Var god uppdatera din PHP-installation för att använda %s säkert.", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 2bbfb6cd98..015183e647 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Expiration date is in the past." => "Термін дії минув.", "Couldn't send mail to following users: %s " => "Неможливо надіслати пошту наступним користувачам: %s ", "Turned on maintenance mode" => "Увімкнено захищений режим", "Turned off maintenance mode" => "Вимкнено захищений режим", @@ -56,6 +57,10 @@ $TRANSLATIONS = array( "(all selected)" => "(все вибрано)", "({count} selected)" => "({count} вибрано)", "Error loading file exists template" => "Помилка при завантаженні файлу існуючого шаблону", +"Very weak password" => "Дуже слабкий пароль", +"Weak password" => "Слабкий пароль", +"Good password" => "Добрий пароль", +"Strong password" => "Надійний пароль", "Shared" => "Опубліковано", "Share" => "Поділитися", "Error" => "Помилка", @@ -115,6 +120,7 @@ $TRANSLATIONS = array( "To login page" => "До сторінки входу", "New password" => "Новий пароль", "Reset password" => "Скинути пароль", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X не підтримується і %s не буде коректно працювати на цій платформі. Випробовуєте на свій риск!", "Personal" => "Особисте", "Users" => "Користувачі", "Apps" => "Додатки", @@ -161,6 +167,7 @@ $TRANSLATIONS = array( "remember" => "запам'ятати", "Log in" => "Вхід", "Alternative Logins" => "Альтернативні Логіни", +"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" => "Агов,<br><br>просто щоб ви знали, що %s поділився »%s« з вами.<br><a href=\"%s\">Подивіться!</a><br><br>", "This ownCloud instance is currently in single user mode." => "Цей екземпляр OwnCloud зараз працює в монопольному режимі одного користувача", "This means only administrators can use the instance." => "Це означає, що лише адміністратори можуть використовувати цей екземпляр.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Зверніться до системного адміністратора, якщо це повідомлення зберігається або з'являєтья несподівано.", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 600c8df9bd..465ae0c700 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -56,6 +56,11 @@ $TRANSLATIONS = array( "(all selected)" => "(已全選)", "({count} selected)" => "(已選 {count} 項)", "Error loading file exists template" => "載入檔案存在樣板出錯", +"Very weak password" => "非常弱的密碼", +"Weak password" => "弱的密碼", +"So-so password" => "普通的密碼", +"Good password" => "好的密碼", +"Strong password" => "很強的密碼", "Shared" => "已分享", "Share" => "分享", "Error" => "錯誤", diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 3feea8b76a..8f1326b553 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index b058b62142..46c7a5046e 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 06f42ada91..55090fdda4 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ady/files.po b/l10n/ady/files.po index e0960d692e..a5f9b453f4 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index ec381a0d66..5bf5a1f891 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index 64fe376c03..cf24a69acf 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index fe2264f61e..43f137c436 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# HannesNell <hannesn@workforce.co.za>, 2014 # kalliet <kst@fam-tank.net>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+0000\n" +"Last-Translator: HannesNell <hannesn@workforce.co.za>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +46,7 @@ msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Onbekende leertipe" #: avatar/controller.php:85 msgid "Invalid image" @@ -53,7 +54,7 @@ msgstr "" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Geen tydelike profiel foto beskikbaar nie, probeer weer" #: avatar/controller.php:135 msgid "No crop data provided" @@ -135,59 +136,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Instellings" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "" -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "sekondes gelede" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute gelede" msgstr[1] "%n minute gelede" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "vandag" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "gister" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "verlede maand" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "verlede jaar" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "jare gelede" @@ -245,11 +246,11 @@ msgstr "" #: js/oc-dialogs.js:384 msgid "Cancel" -msgstr "" +msgstr "Kanseleer" #: js/oc-dialogs.js:394 msgid "Continue" -msgstr "" +msgstr "Gaan voort" #: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" @@ -306,7 +307,7 @@ msgstr "" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Fout met verandering van regte" #: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" @@ -326,7 +327,7 @@ msgstr "" #: js/share.js:223 msgid "Password protect" -msgstr "" +msgstr "Beskerm met Wagwoord" #: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" @@ -334,7 +335,7 @@ msgstr "Wagwoord" #: js/share.js:230 msgid "Allow Public Upload" -msgstr "" +msgstr "Laat Publieke Oplaai toe" #: js/share.js:234 msgid "Email link to person" @@ -346,11 +347,11 @@ msgstr "Stuur" #: js/share.js:240 msgid "Set expiration date" -msgstr "" +msgstr "Stel verval datum" #: js/share.js:241 msgid "Expiration date" -msgstr "" +msgstr "Verval datum" #: js/share.js:277 msgid "Share via email:" @@ -362,7 +363,7 @@ msgstr "" #: js/share.js:324 js/share.js:385 msgid "group" -msgstr "" +msgstr "groep" #: js/share.js:357 msgid "Resharing is not allowed" @@ -370,7 +371,7 @@ msgstr "" #: js/share.js:401 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Gedeel in {item} met {user}" #: js/share.js:423 msgid "Unshare" @@ -386,27 +387,27 @@ msgstr "kan wysig" #: js/share.js:436 msgid "access control" -msgstr "" +msgstr "toegang beheer" #: js/share.js:439 msgid "create" -msgstr "" +msgstr "skep" #: js/share.js:442 msgid "update" -msgstr "" +msgstr "opdateer" #: js/share.js:445 msgid "delete" -msgstr "" +msgstr "uitvee" #: js/share.js:448 msgid "share" -msgstr "" +msgstr "deel" #: js/share.js:721 msgid "Password protected" -msgstr "" +msgstr "Beskerm met Wagwoord" #: js/share.js:734 msgid "Error unsetting expiration date" @@ -414,7 +415,7 @@ msgstr "" #: js/share.js:752 msgid "Error setting expiration date" -msgstr "" +msgstr "Fout met opstel van verval datum" #: js/share.js:777 msgid "Sending ..." @@ -442,7 +443,7 @@ msgstr "" #: js/tags.js:31 msgid "Add" -msgstr "" +msgstr "Voeg by" #: js/tags.js:39 msgid "Edit tags" @@ -465,7 +466,7 @@ msgid "" "The update was unsuccessful. Please report this issue to the <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "Die opdateering was nie suksesvol nie. Raporteer die probleem by <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." @@ -474,7 +475,7 @@ msgstr "" #: lostpassword/controller.php:70 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s wagwoord herstel" #: lostpassword/controller.php:72 msgid "" @@ -495,7 +496,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!<br>Did you make sure your email/username was right?" -msgstr "" +msgstr "Versoek het gefaal!<br>Het jy seker gemaak jou e-pos/gebruiker naam is korrek?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." @@ -516,7 +517,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ja, Ek wil regtig my wagwoord herstel" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" @@ -600,7 +601,7 @@ msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Toegang verbode" #: templates/404.php:15 msgid "Cloud not found" @@ -628,16 +629,16 @@ msgstr "" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Sekuriteits waarskuwing" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Jou PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Opdateer asseblief jou PHP instelasie om %s veilig te gebruik" #: templates/installation.php:33 msgid "" @@ -655,14 +656,14 @@ msgstr "" msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Jou data gids en leers is moontlik toeganklik vanaf die internet omdat die .htaccess leer nie werk nie." #: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the <a " "href=\"%s\" target=\"_blank\">documentation</a>." -msgstr "" +msgstr "Vir inligting oor hoe om jou bediener behoorlik op te stel, sien asseblief die<a href=\"%s\" target=\"_blank\">dokumentasie</a>." #: templates/installation.php:48 msgid "Create an <strong>admin account</strong>" @@ -674,7 +675,7 @@ msgstr "" #: templates/installation.php:77 msgid "Data folder" -msgstr "" +msgstr "Data vouer" #: templates/installation.php:90 msgid "Configure the database" @@ -698,11 +699,11 @@ msgstr "Databasis naam" #: templates/installation.php:132 msgid "Database tablespace" -msgstr "" +msgstr "Databasis tabelspasie" #: templates/installation.php:140 msgid "Database host" -msgstr "" +msgstr "Databasis gasheer" #: templates/installation.php:150 msgid "Finish setup" @@ -722,7 +723,7 @@ msgstr "" #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s is beskikbaar. Kry meer inligting oor opdatering." #: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" @@ -730,7 +731,7 @@ msgstr "Teken uit" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Automatiese aantekening afgekeur!" #: templates/login.php:10 msgid "" @@ -740,7 +741,7 @@ msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Verander asseblief jou wagwoord om jou rekening te beveilig" #: templates/login.php:17 msgid "Server side authentication failed!" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 30b5a5ae9a..c6733f8070 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 1f22386958..7e3987e6eb 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -55,7 +63,7 @@ msgstr "" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Onbekende leertipe" #: private/avatar.php:71 msgid "Invalid image" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index b8e7b43bf5..11cade389f 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -348,7 +348,7 @@ msgstr "" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" -msgstr "" +msgstr "Sekuriteits waarskuwing" #: templates/admin.php:50 #, php-format @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -746,7 +766,7 @@ msgstr "" #: templates/personal.php:104 msgid "Cancel" -msgstr "" +msgstr "Kanseleer" #: templates/personal.php:105 msgid "Choose as profile image" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index a22ec0c215..4fefd23b90 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+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" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "" @@ -285,7 +285,7 @@ msgstr "" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Gaan voort" #: templates/settings.php:11 msgid "" diff --git a/l10n/ak/files.po b/l10n/ak/files.po index d566e8e3cb..dfca2f9b5e 100644 --- a/l10n/ak/files.po +++ b/l10n/ak/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po index 496d2a7f1d..b55a9ef3de 100644 --- a/l10n/ak/lib.po +++ b/l10n/ak/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index 92e383c701..aba30a77dc 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/am_ET/files.po b/l10n/am_ET/files.po index 09ff9217d1..c6d33b423d 100644 --- a/l10n/am_ET/files.po +++ b/l10n/am_ET/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po index 4f1c550a53..e8c8371d58 100644 --- a/l10n/am_ET/lib.po +++ b/l10n/am_ET/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: am_ET\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index 6c609cd16f..bc72585fe7 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ar/files.po b/l10n/ar/files.po index cf267ac9f2..cae4100b64 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا ال msgid "Could not move %s" msgstr "فشل في نقل %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "اسم الملف لا يجوز أن يكون فارغا" @@ -38,18 +38,18 @@ msgstr "اسم الملف لا يجوز أن يكون فارغا" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,59 +175,55 @@ msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق ال msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "شارك" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "حدث خطأ أثناء نقل الملف" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "خطأ" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "لا يوجد مجلدات %n" @@ -237,7 +233,7 @@ msgstr[3] "عدد قليل من مجلدات %n" msgstr[4] "عدد كبير من مجلدات %n" msgstr[5] "مجلدات %n" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "لا يوجد ملفات %n" @@ -247,11 +243,11 @@ msgstr[3] "قليل من ملفات %n" msgstr[4] "الكثير من ملفات %n" msgstr[5] " ملفات %n" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} و {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "لا يوجد ملفات %n لتحميلها" @@ -261,60 +257,56 @@ msgstr[3] "يتم تحميل عدد قليل من ملفات %n" msgstr[4] "يتم تحميل عدد كبير من ملفات %n" msgstr[5] "يتم تحميل ملفات %n" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "مساحتك التخزينية امتلأت تقريبا " -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى." -#: js/files.js:138 +#: js/files.js:136 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 "المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "اسم" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "حجم" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "معدل" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s لا يمكن إعادة تسميته. " diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 92ff968644..7271b01144 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: ar\n" "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" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>. msgid "%s shared »%s« with you" msgstr "%s شارك »%s« معك" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index d8954db88c..6c4f418f12 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "تم ارسال البريد الالكتروني" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "وضعية الإرسال" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "التشفير" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "أسلوب التطابق" @@ -526,91 +526,111 @@ msgstr "السماح بتنبيهات البريد الالكتروني." msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "حماية" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "خادم البريد الالكتروني" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "عنوان الخادم" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "المنفذ" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "سجل" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "المزيد" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "أقل" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "إصدار" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 5a1b65708b..6efeb14935 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "El nome de ficheru nun pue quedar baleru." @@ -36,18 +36,18 @@ msgstr "El nome de ficheru nun pue quedar baleru." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválidu, los caráuteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" nun tán permitíos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renomar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fallu" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamañu" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index cf11aa5ced..cfd280ca4b 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,14 @@ msgstr "" "Language: ast\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index ee7ed5a49c..6264d9ffec 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "Corréu unviáu" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifráu" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Puertu" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Más" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/az/files.po b/l10n/az/files.po index 0713c91424..893a901dfd 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 4ca3ad7e7c..d41bf8bc5a 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index e9de38850f..bcc8f73536 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/be/files.po b/l10n/be/files.po index 6bcbb0a2aa..46d6939add 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,59 +173,55 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Памылка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -233,7 +229,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -241,11 +237,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -253,60 +249,56 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 1ec5525d65..52a04981ca 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: be\n" "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" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 1f6747d53d..dea28e9ad6 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index eac7d479c0..a83ddb504f 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Споделяне" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Грешка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Променено" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index c1d33cccfd..fa5dd98bf5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+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" @@ -17,7 +17,7 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/share.js:13 +#: js/share.js:33 msgid "Shared by {owner}" msgstr "" @@ -60,7 +60,7 @@ msgstr "" #: templates/public.php:17 #, php-format msgid "shared by %s" -msgstr "" +msgstr "споделено от %s" #: templates/public.php:44 #, php-format diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 04985c0716..be92245e98 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,6 +18,14 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Моля направете повторна справка с <a href=' msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 45e8a22497..98eb735a34 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Пощата е изпратена" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Криптиране" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адрес на сървъра" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Още" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "По-малко" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Версия" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 11c329107e..8432a74308 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "%s কে স্থানান্তর করা সম্ভব হ msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" @@ -36,18 +36,18 @@ msgstr "ফাইলের নামটি ফাঁকা রাখা যা msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "ভাগাভাগি কর" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "সমস্যা" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "রাম" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "আকার" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "পরিবর্তিত" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 6287668a6c..5261719357 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 8dfd63b8a1..99ae0a7f08 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "ই-মেইল পাঠানো হয়েছে" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "সংকেতায়ন" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "সার্ভার ঠিকানা" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "পোর্ট" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "বেশী" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "কম" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 6f64ff337e..55b371ee98 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 5899b4927c..ab0f8df8df 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index b58fd383af..ecad7263e7 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 72127548ff..c0a73a1db3 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -31,7 +31,7 @@ msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" msgid "Could not move %s" msgstr " No s'ha pogut moure %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "El nom del fitxer no pot ser buit." @@ -40,18 +40,18 @@ msgstr "El nom del fitxer no pot ser buit." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" no es un fitxer vàlid." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "La carpeta de destí s'ha mogut o eliminat." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,134 +177,126 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "URL cannot be empty" msgstr "L'URL no pot ser buit" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "No s'ha pogut crear el fitxer" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error en obtenir la URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Comparteix" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error en moure el fitxer" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "No es pot canviar el nom de fitxer" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error en esborrar el fitxer." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" msgstr[1] "%n fitxers" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Pujant %n fitxer" msgstr[1] "Pujant %n fitxers" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" no es un fitxer vàlid." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou." -#: js/files.js:138 +#: js/files.js:136 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 "La clau privada de l'aplicació d'encriptació no és vàlida! Actualitzeu la contrasenya de la clau privada a l'arranjament personal per recuperar els fitxers encriptats." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Mida" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 7ae5234994..5a980809bc 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Comproveu les <a href='%s'>guies d'instal·lació</a>." msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 8a8a6b05b8..1ab2d84629 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "El correu electrónic s'ha enviat" msgid "You need to set your user email before being able to send test emails." msgstr "Heu d'establir un nom d'usuari abans de poder enviar correus de prova." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Mode d'enviament" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Xifrat" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Mètode d'autenticació" @@ -526,91 +526,111 @@ msgstr "Permet notificacions per correu electrónic" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Força la connexió dels clients a %s a través d'una connexió encriptada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de correu" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "S'usa per enviar notificacions." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Des de l'adreça" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Es requereix autenticació" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adreça del servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credencials" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nom d'usuari SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Contrasenya SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Prova l'arranjament del correu" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Envia correu" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registre" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Més" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menys" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versió" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 70caf9e725..ea1a69de04 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -7,6 +7,7 @@ # dibalaj <dibalaj@dibalaj.cz>, 2013 # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013-2014 +# xmorave2 <josef.moravec@gmail.com>, 2014 # cvanca <mrs.jenkins.oh.yeah@gmail.com>, 2013 # m23 <black23@gmail.com>, 2014 # pstast <petr@stastny.eu>, 2013 @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -35,7 +36,7 @@ msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Název souboru nemůže být prázdný řetězec." @@ -44,18 +45,18 @@ msgstr "Název souboru nemůže být prázdný řetězec." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" je neplatným názvem souboru." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Cílová složka byla přesunuta nebo smazána." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -181,137 +182,129 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení msgid "URL cannot be empty" msgstr "URL nemůže zůstat prázdná" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "V osobní složce je název 'Shared' rezervovaný" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Nepodařilo se vytvořit soubor" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Chyba při načítání URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Sdílet" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Chyba při přesunu souboru" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Chyba" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Nepodařilo se přejmenovat soubor" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Chyba při mazání souboru." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" msgstr[1] "%n soubory" msgstr[2] "%n souborů" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávám %n soubor" msgstr[1] "Nahrávám %n soubory" msgstr[2] "Nahrávám %n souborů" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" je neplatným názvem souboru." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste" -#: js/files.js:138 +#: js/files.js:136 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 "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Název" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Velikost" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Upraveno" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Neplatný název složky. Použití 'Shared' je rezervováno." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" @@ -319,7 +312,7 @@ msgstr "%s nemůže být přejmenován" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Nahrát (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index d0af536414..bcc99c8b2a 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -6,6 +6,7 @@ # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013 # svetlemodry <jaroslav@lichtblau.cz>, 2014 +# xmorave2 <josef.moravec@gmail.com>, 2014 # m23 <black23@gmail.com>, 2014 # pstast <petr@stastny.eu>, 2013-2014 # Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013 @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -23,6 +24,14 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -290,99 +299,104 @@ msgstr "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>." msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Sdílení položky %s selhalo, protože uživatel %s je jejím vlastníkem" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože uživatel %s neexistuje" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože uživatel %s není členem žádné skupiny společné s uživatelem %s" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílená" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože skupina %s neexistuje" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože uživatel %s není členem skupiny %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 6b6765065a..ee503daeb0 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 20:00+0000\n" -"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -55,15 +55,15 @@ msgstr "E-mail odeslán" msgid "You need to set your user email before being able to send test emails." msgstr "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Mód odesílání" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifrování" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Metoda ověření" @@ -531,91 +531,111 @@ msgstr "Povolit e-mailová upozornění" msgid "Allow users to send mail notification for shared files" msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-mailový server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Toto se používá pro odesílání upozornění." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Adresa odesílatele" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Vyžadováno ověření" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresa serveru" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Přihlašovací údaje" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP uživatelské jméno " -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP heslo" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Otestovat nastavení e-mailu" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Odeslat e-mail" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Záznam" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Více" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Méně" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Verze" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 6d40efa1f1..2625a5b2b3 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" msgid "Could not move %s" msgstr "Methwyd symud %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Does dim hawl cael enw ffeil gwag." @@ -36,18 +36,18 @@ msgstr "Does dim hawl cael enw ffeil gwag." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,59 +173,55 @@ msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Rhannu" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Gwall" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -233,7 +229,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -241,11 +237,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -253,60 +249,56 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Enw" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Maint" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Addaswyd" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index d9647cd3f3..19a1e5e794 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Gwiriwch y <a href='%s'>canllawiau gosod</a> eto." msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 21bd860c84..61d870daf0 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Anfonwyd yr e-bost" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Amgryptiad" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/da/files.po b/l10n/da/files.po index 85e9030ae9..7e71520115 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -32,7 +32,7 @@ msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Filnavnet kan ikke stå tomt." @@ -41,18 +41,18 @@ msgstr "Filnavnet kan ikke stå tomt." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" er et ugyldigt filnavn." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Mappen er blevet slettet eller fjernet." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -178,134 +178,126 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Navnet 'Shared' er reserveret i hjemmemappen." - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Kunne ikke oprette fil" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Kunne ikke oprette mappe" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fejl ved URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Del" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fejl ved flytning af fil" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fejl" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Kunne ikke omdøbe filen" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Fejl ved sletnign af fil." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploader %n fil" msgstr[1] "Uploader %n filer" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "'{name}' er et ugyldigt filnavn." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen." -#: js/files.js:138 +#: js/files.js:136 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 "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. " -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Størrelse" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Ændret" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ugyldig mappenavn. 'Shared' er reserveret." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index d669abb752..dc85a7ff6b 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,99 +296,104 @@ msgstr "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 4d63d7d427..3eee6bae03 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "E-mail afsendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -527,91 +527,111 @@ msgstr "Tillad mail underretninger" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tving klienten til at forbinde til %s via en kryptetet forbindelse." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Email Server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Fra adresse" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Godkendelse påkrævet" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Serveradresse" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Brugeroplysninger" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Brugernavn" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Kodeord" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Test email indstillinger" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Send email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mere" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de/files.po b/l10n/de/files.po index 63e23b8bf2..5198447b52 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 09:40+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -35,7 +35,7 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." @@ -44,18 +44,18 @@ msgstr "Der Dateiname darf nicht leer sein." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" ist kein gültiger Dateiname." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Der Zielordner wurde verschoben oder gelöscht." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -181,134 +181,126 @@ msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload a msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" msgstr[1] "%n Dateien werden hochgeladen" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" ist kein gültiger Dateiname." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Dein Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melden Dich nochmals ab und wieder an." -#: js/files.js:138 +#: js/files.js:136 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 "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere Dein privates Schlüssel-Passwort, um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Deine Dateien nach wie vor verschlüsselt. Bitte gehe zu Deinen persönlichen Einstellungen, um Deine Dateien zu entschlüsseln." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Größe" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Geändert" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index fb985f57f2..c7539f4d64 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -4,7 +4,7 @@ # # Translators: # I Robot, 2014 -# Mario Siegmann <mario_siegmann@web.de>, 2013 +# Mario Siegmann <mario_siegmann@web.de>, 2013-2014 # ninov <ninovdl@ymail.com>, 2013 # stefanniedermann <stefan.niedermann@googlemail.com>, 2014 # noxin <transifex.com@davidmainzer.com>, 2013 @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -23,6 +23,14 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -290,103 +298,108 @@ msgstr "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>." msgid "%s shared »%s« with you" msgstr "%s teilte »%s« mit Dir" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s Besitzer des Objektes ist" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s nicht existiert" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s kein Gruppenmitglied einer der Gruppen von %s ist" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Datei im Datei-Cache nicht gefunden werden konnte" #: private/tags.php:193 #, php-format diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 70f58f382a..5fc2929ecc 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 09:40+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -56,15 +56,15 @@ msgstr "E-Mail wurde verschickt" msgid "You need to set your user email before being able to send test emails." msgstr "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E-Mail verschicken kannst." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Authentifizierungsmethode" @@ -532,91 +532,111 @@ msgstr "Mail-Benachrichtigung erlauben" msgid "Allow users to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Dies wird zum Senden von Benachrichtigungen verwendet." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Passwor" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Teste E-Mail-Einstellunge" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Sende E-Mail" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mehr" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index bb860e55b3..6f9264ac73 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Freigeben" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index dda2e8bf4e..12860020a3 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index d91974e8a4..75bd12b6bd 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 36673d798d..c0ac1bd869 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -36,7 +36,7 @@ msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." @@ -45,18 +45,18 @@ msgstr "Der Dateiname darf nicht leer sein." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -182,134 +182,126 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n Dateien" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" msgstr[1] "%n Dateien werden hochgeladen" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Grösse" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Geändert" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 24f9b93858..6a17ffebe3 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,99 +296,104 @@ msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 4165f28b4b..89ffb2a435 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -56,15 +56,15 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -532,91 +532,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mehr" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ccb5acaeff..398d697544 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 13:50+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -38,7 +38,7 @@ msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." @@ -47,18 +47,18 @@ msgstr "Der Dateiname darf nicht leer sein." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" ist kein gültiger Dateiname." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Der Ziel-Ordner wurde verschoben oder gelöscht." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -184,134 +184,126 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" msgstr[1] "%n Dateien werden hoch geladen" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" ist kein gültiger Dateiname." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an." -#: js/files.js:138 +#: js/files.js:136 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 "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Größe" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Geändert" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 4447942d67..4b4f75e1af 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -4,7 +4,7 @@ # # Translators: # I Robot, 2014 -# Mario Siegmann <mario_siegmann@web.de>, 2013 +# Mario Siegmann <mario_siegmann@web.de>, 2013-2014 # stefanniedermann <stefan.niedermann@googlemail.com>, 2014 # traductor, 2013 # noxin <transifex.com@davidmainzer.com>, 2013 @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -23,6 +23,14 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -290,103 +298,108 @@ msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." msgid "%s shared »%s« with you" msgstr "%s hat »%s« mit Ihnen geteilt" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s Besitzer des Objektes ist" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s nicht existiert" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s kein Gruppenmitglied einer der Gruppen von %s ist" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Datei im Datei-Cache nicht gefunden werden konnte" #: private/tags.php:193 #, php-format diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 6d79de897e..0451f768d6 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 09:40+0000\n" -"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -56,15 +56,15 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "Sie müssen Ihre Benutzer-E-Mail-Adresse setzen, bevor Sie Test-E-Mails versenden können." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Authentifizierungsmethode" @@ -532,91 +532,111 @@ msgstr "Mail-Benachrichtigung erlauben" msgid "Allow users to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Dies wird für das Senden von Benachrichtigungen verwendet." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Passwort" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "E-Mail-Einstellungen testen" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "E-Mail senden" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mehr" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/el/files.po b/l10n/el/files.po index d35a622a95..3e69546331 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -34,7 +34,7 @@ msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδ msgid "Could not move %s" msgstr "Αδυναμία μετακίνησης του %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό." @@ -43,18 +43,18 @@ msgstr "Το όνομα αρχείου δεν μπορεί να είναι κε msgid "\"%s\" is an invalid file name." msgstr "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -180,134 +180,126 @@ msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέ msgid "URL cannot be empty" msgstr "Η URL δεν πρέπει να είναι κενή" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Αδυναμία δημιουργίας αρχείου" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Αδυναμία δημιουργίας φακέλου" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Σφάλμα φόρτωσης URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Διαμοιρασμός" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Σφάλμα" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Αδυναμία μετονομασίας αρχείου" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Σφάλμα διαγραφής αρχείου." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" msgstr[1] "%n αρχεία" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{Κατάλογοι αρχείων} και {αρχεία}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Ανέβασμα %n αρχείου" msgstr[1] "Ανέβασμα %n αρχείων" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "Το \"{name}\" είναι μη έγκυρο όνομα αρχείου." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε." -#: js/files.js:138 +#: js/files.js:136 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 "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Τροποποιήθηκε" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index edea3a7e21..7cf1c93e42 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -22,6 +22,14 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -289,99 +297,104 @@ msgstr "Ελέγξτε ξανά τις <a href='%s'>οδηγίες εγκατά msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 72799b9f58..7fdf75d667 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -56,15 +56,15 @@ msgstr "Το Email απεστάλη " msgid "You need to set your user email before being able to send test emails." msgstr "Πρέπει να ορίσετε το email του χρήστη πριν να είστε σε θέση να στείλετε δοκιμαστικά emails." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Κατάσταση αποστολής" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Μέθοδος πιστοποίησης" @@ -532,91 +532,111 @@ msgstr "Επιτρέπονται ειδοποιήσεις ηλεκτρονικο msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Επιβάλλει τους πελάτες να συνδέονται στο %s μέσω κρυπτογραφημένης σύνδεσης." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Διακομιστής Email" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Χρησιμοποιείται για αποστολή ειδοποιήσεων." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Από τη διεύθυνση" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Απαιτείται πιστοποίηση" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Διεύθυνση διακομιστή" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Θύρα" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Πιστοποιητικά" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Όνομα χρήστη SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Συνθηματικό SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Δοκιμή ρυθμίσεων email" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Αποστολή email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index d0ab951ca9..a7dceb189d 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index 5a7e2c1746..9029e8c7d1 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 718ec23774..7665c3704c 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 862e41169c..77776b1b6a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:31+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +28,7 @@ msgstr "Could not move %s - File with this name already exists" msgid "Could not move %s" msgstr "Could not move %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "File name cannot be empty." @@ -37,18 +37,18 @@ msgstr "File name cannot be empty." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" is an invalid file name." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "The target folder has been moved or deleted." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,134 +174,126 @@ msgstr "File upload is in progress. Leaving the page now will cancel the upload. msgid "URL cannot be empty" msgstr "URL cannot be empty" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "In the home folder 'Shared' is a reserved file name" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} already exists" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Could not create file" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Could not create folder" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error fetching URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Share" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Delete permanently" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Rename" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error moving file" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pending" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error deleting file." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" msgstr[1] "Uploading %n files" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" is an invalid file name." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Your storage is full, files can not be updated or synced anymore!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Encryption App is enabled but your keys are not initialised, please log-out and log-in again" -#: js/files.js:138 +#: js/files.js:136 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 "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:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "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:331 +#: js/files.js:329 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:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Size" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modified" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Invalid folder name. Usage of 'Shared' is reserved." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s could not be renamed" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 0d6696a617..11fdcf4ddc 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,103 +293,108 @@ msgstr "Please double check the <a href='%s'>installation guides</a>." msgid "%s shared »%s« with you" msgstr "%s shared \"%s\" with you" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Sharing %s failed, because the user %s is the item owner" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Sharing %s failed, because the user %s does not exist" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Sharing %s failed, because this item is already shared with %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Sharing %s failed, because the group %s does not exist" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Sharing %s failed, because %s is not a member of the group %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Sharing %s failed, because sharing with links is not allowed" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Share type %s is not valid for %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Setting permissions for %s failed, because the item was not found" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Sharing backend %s must implement the interface OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Sharing backend %s not found" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Sharing backend for %s not found" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Sharing %s failed, because the user %s is the original sharer" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Sharing %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Sharing %s failed, because resharing is not allowed" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Sharing %s failed, because the sharing backend for %s could not find its source" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Sharing %s failed, because the file could not be found in the file cache" #: private/tags.php:193 #, php-format diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 6b178f05eb..07dbb86c48 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:31+0000\n" -"Last-Translator: mnestis <transifex@mnestis.net>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Email sent" msgid "You need to set your user email before being able to send test emails." msgstr "You need to set your user email before being able to send test emails." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Send mode" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Encryption" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Authentication method" @@ -524,91 +524,111 @@ msgstr "Allow mail notification" msgid "Allow users to send mail notification for shared files" msgstr "Allow users to send mail notification for shared files" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Security" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forces the clients to connect to %s via an encrypted connection." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Email Server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "This is used for sending out notifications." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "From address" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authentication required" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Server address" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credentials" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Username" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Password" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Test email settings" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Send email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log level" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "More" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Less" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 73a096c283..d3af9c674f 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -28,7 +28,7 @@ msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" msgid "Could not move %s" msgstr "Ne eblis movi %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Dosiernomo devas ne malpleni." @@ -37,18 +37,18 @@ msgstr "Dosiernomo devas ne malpleni." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,134 +174,126 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." msgid "URL cannot be empty" msgstr "La URL ne povas malpleni" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Ne povis kreiĝi dosiero" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Kunhavigi" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Eraris movo de dosiero" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Eraro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Ne povis alinomiĝi dosiero" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosierujo" msgstr[1] "%n dosierujoj" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosiero" msgstr[1] "%n dosieroj" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} kaj {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Alŝutatas %n dosiero" msgstr[1] "Alŝutatas %n dosieroj" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Via memoro preskaŭ plenas ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Grando" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modifita" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ne povis alinomiĝi" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 3943f0c74c..d30a8b2f4a 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,6 +18,14 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Bonvolu duoble kontroli la <a href='%s'>gvidilon por instalo</a>." msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index b5865f264b..576e1faca1 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "La retpoŝtaĵo sendiĝis" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Ĉifrado" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Servila adreso" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Pordo" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Aŭtentigiloj" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Pli" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Malpli" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Eldono" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es/files.po b/l10n/es/files.po index 9ea5a0b179..a0c0dd87b4 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -7,7 +7,8 @@ # ggam <ggam@brainleakage.com>, 2013 # japaol <japaol@gmail.com>, 2013 # juanman <juanma@kde.org.ar>, 2013 -# mikelanabitarte <mikelanabitarte@gmail.com>, 2013 +# mikelanabitarte <inactive+mikelanabitarte@transifex.com>, 2013 +# plaguna <laguna.sanchez@gmail.com>, 2014 # Raul Fernandez Garcia <raulfg3@gmail.com>, 2013 # qdneren <renanqd@yahoo.com.mx>, 2013 # Rubén del Campo <yo@rubendelcampo.es>, 2013 @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -37,7 +38,7 @@ msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." @@ -46,18 +47,18 @@ msgstr "El nombre de archivo no puede estar vacío." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" es un nombre de archivo inválido." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "La carpeta destino fue movida o eliminada." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -183,134 +184,126 @@ msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "En la carpeta home, no se puede usar 'Shared'" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error al descargar URL." -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error moviendo archivo" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error al borrar el archivo" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" es un nombre de archivo inválido." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "La app de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." -#: js/files.js:138 +#: js/files.js:136 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 "La clave privada no es válida para la app de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "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:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" @@ -318,7 +311,7 @@ msgstr "%s no pudo ser renombrado" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Subida (máx. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index aa43afb515..ab62540ee1 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -5,6 +5,7 @@ # Translators: # Art O. Pal <artopal@fastmail.fm>, 2014 # Dharth <emilpg@gmail.com>, 2013 +# inye <j.contrerasferrada@gmail.com>, 2014 # pablomillaquen <pablomillaquen@gmail.com>, 2013 # Raul Fernandez Garcia <raulfg3@gmail.com>, 2013 # Rubén del Campo <yo@rubendelcampo.es>, 2013 @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -24,6 +25,14 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -291,103 +300,108 @@ msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a msgid "%s shared »%s« with you" msgstr "%s ha compatido »%s« contigo" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Compartiendo %s ha fallado, ya que el usuario %s es el dueño del elemento" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que el usuario %s no existe" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que el usuario %s no es miembro de algún grupo que %s es miembro" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que este elemento ya está compartido con %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que el grupo %s no existe" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que %s no es miembro del grupo %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que compartir con enlaces no está permitido" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Compartir tipo %s no es válido para %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Configuración de permisos para %s ha fallado, ya que los permisos superan los permisos dados a %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Configuración de permisos para %s ha fallado, ya que el elemento no fue encontrado" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que el usuario %s es el compartidor original" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que los permisos superan los permisos otorgados a %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que volver a compartir no está permitido" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Compartiendo %s ha fallado, ya que el archivo no pudo ser encontrado en el cache de archivo" #: private/tags.php:193 #, php-format diff --git a/l10n/es/settings.po b/l10n/es/settings.po index e9254d48a3..b80b5d2b29 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -10,6 +10,7 @@ # japaol <japaol@gmail.com>, 2013 # Jose Luis Tirado <joseluis.tirado@gmail.com>, 2014 # juanman <juanma@kde.org.ar>, 2013-2014 +# plaguna <laguna.sanchez@gmail.com>, 2014 # pablomillaquen <pablomillaquen@gmail.com>, 2013 # Raul Fernandez Garcia <raulfg3@gmail.com>, 2013 # qdneren <renanqd@yahoo.com.mx>, 2013 @@ -21,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -61,15 +62,15 @@ msgstr "Correo electrónico enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Tiene que configurar su dirección de correo electrónico antes de poder enviar mensajes de prueba." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Método de autenticación" @@ -535,93 +536,113 @@ msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de correo electrónico" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Esto se usa para enviar notificaciones." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Desde la dirección" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Se necesita autenticación" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Puerto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nombre de usuario SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Contraseña SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Probar configuración de correo electrónico" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Enviar mensaje" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Más" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index b237b68fca..a665ba3c3a 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -7,6 +7,7 @@ # Art O. Pal <artopal@fastmail.fm>, 2014 # Jose Luis Tirado <joseluis.tirado@gmail.com>, 2014 # Maenso <balero_arana@hotmail.com>, 2013 +# plaguna <laguna.sanchez@gmail.com>, 2014 # Raul Fernandez Garcia <raulfg3@gmail.com>, 2013 # ordenet <roberto@ordenet.com>, 2013 # Rodrigo Rodríguez <roirobo@ubuntu.org.ni>, 2013 @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 15:00+0000\n" +"Last-Translator: plaguna <laguna.sanchez@gmail.com>\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,43 +97,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Configuración Correcta" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Confirmar eliminación" @@ -154,7 +155,7 @@ msgstr[1] "Usuarios %s encontrados" msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." @@ -431,14 +432,14 @@ msgstr "Cuando se active, se permitirán grupos que contenga otros grupos (solo #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Tamaño de los fragmentos de paginación" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Tamaño de los fragmentos usado para búsquedas LDAP paginadas que pueden devolver resultados voluminosos, como enumeración de usuarios o de grupos. (Si se establece en 0, se deshabilitan las búsquedas LDAP paginadas en esas situaciones.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index aa1b502cbe..4ada9f6091 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 20:10+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" @@ -136,59 +136,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Configuración" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "hoy" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "ayer" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "el año pasado" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "años atrás" @@ -266,23 +266,23 @@ msgstr "Error cargando la plantilla de archivo existente" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Contraseña muy débil." #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Contraseña débil." #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Contraseña de nivel medio. " #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Buena contraseña. " #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Contraseña fuerte." #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 490d277f87..b2c74fa1e8 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -31,7 +31,7 @@ msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "El nombre del archivo no puede quedar vacío." @@ -40,18 +40,18 @@ msgstr "El nombre del archivo no puede quedar vacío." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,134 +177,126 @@ msgstr "La subida del archivo está en proceso. Si salís de la página ahora, l msgid "URL cannot be empty" msgstr "La URL no puede estar vacía" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "En el directorio inicial 'Shared' es un nombre de archivo reservado" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "No se pudo crear el directorio" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error al obtener la URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error moviendo el archivo" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error al borrar el archivo." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{carpetas} y {archivos}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "La aplicación de encriptación está habilitada pero las llaves no fueron inicializadas, por favor termine y vuelva a iniciar la sesión" -#: js/files.js:138 +#: js/files.js:136 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 "Llave privada inválida para la aplicación de encriptación. Por favor actualice la clave de la llave privada en las configuraciones personales para recobrar el acceso a sus archivos encriptados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nombre de directorio inválido. 'Shared' está reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index ce96c6ce43..27285a233d 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # cjtess <claudio.tessone@gmail.com>, 2013 # cnngimenez, 2013-2014 +# Javier Victor Mariano Bruno <koryyyy@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 19:50+0000\n" +"Last-Translator: Javier Victor Mariano Bruno <koryyyy@gmail.com>\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" @@ -103,7 +104,7 @@ msgstr "Encriptación inicial comenzada... Esto puede durar un tiempo. Por favor #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Encriptación inicial corriendo... Por favor intente mas tarde. " #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -113,91 +114,91 @@ msgstr "Ve directamente a tu" msgid "personal settings" msgstr "Configuración personal" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Encriptación" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Contraseña de recuperación de clave" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "Repetir la contraseña de la clave de recuperación" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Habilitado" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Deshabilitado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Cambiar contraseña para recuperar la clave:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Contraseña antigua de recuperación de clave" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nueva contraseña de recuperación de clave" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "Repetir Nueva contraseña para la clave de recuperación" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Cambiar contraseña" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "Tu contraseña de clave privada ya no coincide con la contraseña de ingreso:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "Usá tu contraseña de clave privada antigua para tu contraseña de ingreso actual." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos" -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Contraseña anterior" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Contraseña actual" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "Actualizar contraseña de la clave privada" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "Habilitar recuperación de contraseña:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Las opciones de recuperación de archivos fueron actualizadas" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "No fue posible actualizar la recuperación de archivos" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 84191efc64..693164f288 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 20:10+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" @@ -40,31 +40,31 @@ msgstr "Error al configurar el almacenamiento de Google Drive" #: js/settings.js:318 js/settings.js:325 msgid "Saved" -msgstr "" +msgstr "Guardado" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index c751c3e6cc..8adff8cc30 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a msgid "%s shared »%s« with you" msgstr "%s compartió \"%s\" con vos" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index ec1a2c9acc..152b1b0a9f 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -6,12 +6,13 @@ # Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013 # cjtess <claudio.tessone@gmail.com>, 2013 # cnngimenez, 2013-2014 +# Javier Victor Mariano Bruno <koryyyy@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -23,24 +24,24 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Parámetro suministrado invalido para %s" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Guardado" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "Configuración de correo de prueba." #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Si recibió este correo, la configuración parece estar correcta." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Un problema ocurrió cuando se intentó enviar el correo electrónico. Por favor revea su configuración." #: admin/controller.php:99 msgid "Email sent" @@ -48,19 +49,19 @@ msgstr "e-mail mandado" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Necesita especificar el usuario de correo electrónico antes de poder enviar correos electrónicos de prueba." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" -msgstr "" +msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Encriptación" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" -msgstr "" +msgstr "Método de autenticación" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -89,7 +90,7 @@ msgstr "No fue posible añadir el grupo" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Archivos des-encriptados correctamente" #: ajax/decryptall.php:33 msgid "" @@ -174,7 +175,7 @@ msgstr "Imposible cambiar la contraseña" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Enviando..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -182,7 +183,7 @@ msgstr "Documentación de Usuario" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Documentación de Administrador." #: js/apps.js:67 msgid "Update to {appversion}" @@ -234,23 +235,23 @@ msgstr "Seleccionar una imágen de perfil" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Contraseña muy débil." #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Contraseña débil." #: js/personal.js:276 msgid "So-so password" -msgstr "" +msgstr "Contraseña de nivel medio. " #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "Buena contraseña. " #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "Contraseña fuerte." #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." @@ -335,19 +336,19 @@ msgstr "Ingresar" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Plano" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "Administrador NT LAN" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -524,93 +525,113 @@ msgstr "Permitir notificaciones por correo" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Habilitar a los usuarios para enviar notificaciones por correo para archivos compartidos" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" -msgstr "" +msgstr "Servidor de correo electrónico" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." -msgstr "" +msgstr "Esto es usado para enviar notificaciones." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" -msgstr "" +msgstr "Dirección remitente" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" -msgstr "" +msgstr "Autentificación requerida" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Puerto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" -msgstr "" +msgstr "Nombre de usuario SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" -msgstr "" +msgstr "Contraseña SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" -msgstr "" +msgstr "Configuracion de correo de prueba." -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" -msgstr "" +msgstr "Enviar correo" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Más" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -634,7 +655,7 @@ msgstr "Elegí una App" #: templates/apps.php:43 msgid "Documentation:" -msgstr "" +msgstr "Documentación:" #: templates/apps.php:49 msgid "See application page at apps.owncloud.com" @@ -642,7 +663,7 @@ msgstr "Mirá la web de aplicaciones apps.owncloud.com" #: templates/apps.php:51 msgid "See application website" -msgstr "" +msgstr "Ver sitio web de la aplicación" #: templates/apps.php:53 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" @@ -721,7 +742,7 @@ msgstr "Tu dirección de e-mail" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Rellene una direccion de correo para habilitar la recuperacion de contraseña y recibir notificaciones. " #: templates/personal.php:89 msgid "Profile picture" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 071e358695..aac34c4668 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -5,13 +5,14 @@ # Translators: # cjtess <claudio.tessone@gmail.com>, 2013 # cnngimenez, 2014 +# Javier Victor Mariano Bruno <koryyyy@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 20:00+0000\n" +"Last-Translator: Javier Victor Mariano Bruno <koryyyy@gmail.com>\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" @@ -88,43 +89,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Configuración válida" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Configuración incorrecta" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Seleccionar las clases de objetos" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "El este de conexión ha sido completado satisfactoriamente" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "Falló es test de conexión" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea borrar la configuración actual del servidor?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Confirmar borrado" @@ -146,7 +147,7 @@ msgstr[1] "%s usuarios encontrados" msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "No se pudo encontrar la característica deseada" @@ -165,7 +166,7 @@ msgstr "Ayuda" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Los grupos que cumplen con estos criterios están disponibles en %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -201,7 +202,7 @@ msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Los usuarios inician sesión con este atributo:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -269,7 +270,7 @@ msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Av #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Limitar acceso %s a los usuarios que cumplen con este criterio:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -338,7 +339,7 @@ msgstr "Conectarse únicamente al servidor de réplica." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Servidor de LDAP insensible a mayúsculas/minúsculas (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." @@ -413,17 +414,17 @@ msgstr "Asociación Grupo-Miembro" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Grupos Anidados" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Cuando se activa, grupos que contienen grupos son soportados. (Solo funciona si el atributo de miembro del grupo contiene DNs)" #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Tamaño del fragmento de paginación" #: templates/settings.php:40 msgid "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index 275606fec5..a9a51c8525 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" -msgstr "" +msgstr "Renombrar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" @@ -356,7 +348,7 @@ msgstr "" #: templates/index.php:12 msgid "New folder" -msgstr "" +msgstr "Nuevo directorio" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po index 556ec2e34c..42e6ef6634 100644 --- a/l10n/es_CL/files_external.po +++ b/l10n/es_CL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 16:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -41,29 +41,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -76,7 +76,7 @@ msgstr "" #: templates/settings.php:8 templates/settings.php:27 msgid "Folder name" -msgstr "" +msgstr "Nombre del directorio" #: templates/settings.php:9 msgid "External storage" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index 26fc694daa..30f14c86d0 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 89776c457b..8ef8dd331c 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es_CR/files.po b/l10n/es_CR/files.po index 0a682b7b72..b1af60b243 100644 --- a/l10n/es_CR/files.po +++ b/l10n/es_CR/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/es_CR/lib.po b/l10n/es_CR/lib.po index 659f584b65..6560ae17ea 100644 --- a/l10n/es_CR/lib.po +++ b/l10n/es_CR/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_CR/settings.po b/l10n/es_CR/settings.po index a49c9deae0..fbcec64764 100644 --- a/l10n/es_CR/settings.po +++ b/l10n/es_CR/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 76bbff5f42..1ab396c0c2 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." @@ -36,18 +36,18 @@ msgstr "El nombre de archivo no puede estar vacío." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error al descargar URL." -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error moviendo archivo" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error borrando el archivo." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." -#: js/files.js:138 +#: js/files.js:136 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 "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "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:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index db71e813cd..194c2c95a9 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a msgid "%s shared »%s« with you" msgstr "%s ha compartido »%s« contigo" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index d94130c865..93d692913b 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Correo electrónico enviado" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "Permitir notificaciones por correo electrónico" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Puerto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Más" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 5e4ce1b68e..8ae59371b0 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:13+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:31+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 9780dd446f..e6a6612c79 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:23+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Faili nimi ei saa olla tühi." @@ -38,18 +38,18 @@ msgstr "Faili nimi ei saa olla tühi." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" on vigane failinimi." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Sihtkataloog on ümber tõstetud või kustutatud." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle ülesla msgid "URL cannot be empty" msgstr "URL ei saa olla tühi" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Ei suuda luua faili" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Viga URL-i haaramisel" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Jaga" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Viga faili eemaldamisel" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Viga" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Viga faili kustutamisel." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" msgstr[1] "Laadin üles %n faili" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" on vigane failinimi." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse." -#: js/files.js:138 +#: js/files.js:136 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 "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:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "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:331 +#: js/files.js:329 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:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Suurus" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Muudetud" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 6c6de1a437..ec9288de57 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:43+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:31+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index f6146366c6..0bb327fdb7 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,103 +294,108 @@ msgstr "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>." msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Jagamise tüüp %s ei ole õige %s jaoks" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Jagamise tagarakendit %s ei leitud" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Jagamise tagarakendit %s jaoks ei leitud" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna jagamise õigused ületavad %s jaoks määratud õigusi" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna edasijagamine pole lubatud" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna jagamise tagarakend ei suutnud leida %s jaoks lähteallikat" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna faili ei suudetud leida failide puhvrist" #: private/tags.php:193 #, php-format diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 188aaff2c6..8aabd43311 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:15+0000\n" -"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "E-kiri on saadetud" msgid "You need to set your user email before being able to send test emails." msgstr "Pead seadistama oma e-postienne kui on võimalik saata test-kirju." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Saatmise viis" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Krüpteerimine" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Autentimise meetod" @@ -525,91 +525,111 @@ msgstr "Luba teavitused e-postiga" msgid "Allow users to send mail notification for shared files" msgstr "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Postiserver" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Seda kasutatakse teadete välja saatmiseks." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Saatja aadress" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autentimine on vajalik" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Serveri aadress" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Kasutajatunnused" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP kasutajatunnus" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP parool" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Testi e-posti seadeid" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Saada kiri" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logi" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Rohkem" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Vähem" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versioon" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 9735b87dbe..6756bba3fe 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:17+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:31+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 281fc74b73..6b0805ff7b 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Fitxategi izena ezin da hutsa izan." @@ -38,18 +38,18 @@ msgstr "Fitxategi izena ezin da hutsa izan." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du. msgid "URL cannot be empty" msgstr "URLa ezin da hutsik egon" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Ezin izan da fitxategia sortu" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Errorea URLa eskuratzerakoan" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Elkarbanatu" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Errorea fitxategia mugitzean" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Errorea" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Zain" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Ezin izan da fitxategia berrizendatu" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Errorea fitxategia ezabatzerakoan." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" msgstr[1] "%n fitxategi" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} eta {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Fitxategi %n igotzen" msgstr[1] "%n fitxategi igotzen" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi" -#: js/files.js:138 +#: js/files.js:136 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 "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaina" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Aldatuta" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index e2eee4be45..2fb9d10a83 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Mesedez begiratu <a href='%s'>instalazio gidak</a>." msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 68512ff41a..4ca4b2366d 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "Eposta bidalia" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Enkriptazioa" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -526,91 +526,111 @@ msgstr "Baimendu posta bidezko jakinarazpenak" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Zerbitzariaren helbidea" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Portua" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Kredentzialak" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Gehiago" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 2d1e2e9f99..1f25874d0f 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 2fbdf0eae6..75ca48cd20 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 95737685da..fc10a358ad 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 938b248e10..8200354f79 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "%s نمی توان جابجا کرد - در حال حاضر پرونده msgid "Could not move %s" msgstr "%s نمی تواند حرکت کند " -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "نام پرونده نمی تواند خالی باشد." @@ -38,18 +38,18 @@ msgstr "نام پرونده نمی تواند خالی باشد." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,131 +175,123 @@ msgstr "آپلودکردن پرونده در حال پیشرفت است. در ص msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "اشتراکگذاری" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "خطا" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "در حال بارگذاری %n فایل" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "اندازه" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "تاریخ" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 8a60e81be0..bb866264d5 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بر msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 52107ad513..0985d0aa7c 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "ایمیل ارسال شد" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "رمزگذاری" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -526,91 +526,111 @@ msgstr "مجاز نمودن اطلاع رسانی توسط ایمیل" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "امنیت" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "کلاینتها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "برای فعال سازی یا عدم فعال سازی اجبار استفاده از SSL، لطفاً از طریق HTTPS به %s وصل شوید." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "آدرس سرور" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "درگاه" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "اعتبارهای" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "بیشتر" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "کمتر" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "نسخه" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index df5e50b673..277ab93a71 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -5,14 +5,15 @@ # Translators: # Jiri Grönroos <jiri.gronroos@iki.fi>, 2013-2014 # nahka <nahkaz@gmail.com>, 2014 +# ottok <otto@seravo.fi>, 2014 # ioxo <vahakangas@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 08:11+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,7 +31,7 @@ msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemas msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Tiedoston nimi ei voi olla tyhjä." @@ -39,18 +40,18 @@ msgstr "Tiedoston nimi ei voi olla tyhjä." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" on virheellinen tiedostonimi." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Kohdekansio on siirretty tai poistettu." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,134 +177,126 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "URL cannot be empty" msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Tiedoston luominen epäonnistui" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Virhe noutaessa verkko-osoitetta" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Jaa" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Virhe tiedostoa siirrettäessä" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Virhe" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Virhe tiedostoa poistaessa." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" msgstr[1] "Lähetetään %n tiedostoa" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" on virheellinen tiedostonimi." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen." -#: js/files.js:138 +#: js/files.js:136 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 "Salaussovelluksen salausavain on virheellinen. Ole hyvä ja päivitä salausavain henkilökohtaisissa asetuksissasi jotta voit taas avata salatuskirjoitetut tiedostosi." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Koko" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Muokattu" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Virheellinen kansion nimi. 'Shared':n käyttö on varattu." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "kohteen %s nimeäminen uudelleen epäonnistui" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 5f02f3c05f..4472709ca4 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -133,7 +141,7 @@ msgstr "" msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Sovellusta ei voi asentaa, koska info.xml/version ilmoittaa versioksi eri arvon kuin sovelluskauppa" #: private/installer.php:170 msgid "App directory already exists" @@ -223,7 +231,7 @@ msgstr "Tietokantavirhe: \"%s\"" #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Loukkaava komento oli: \"%s\"" #: private/setup/mysql.php:85 #, php-format @@ -254,7 +262,7 @@ msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" #: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Loukkaava komento oli: \"%s\", nimi: %s, salasana: %s" #: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" @@ -272,7 +280,7 @@ msgstr "Aseta ylläpitäjän salasana." msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki." #: private/setup.php:203 #, php-format @@ -285,103 +293,108 @@ msgstr "Lue tarkasti <a href='%s'>asennusohjeet</a>." msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on kohteen omistaja" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjää %s ei ole olemassa" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjän %s kanssa" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska ryhmää %s ei ole olemassa" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s ei ole ryhmän %s jäsen" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen linkkejä käyttäen ei ole sallittu" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löytynyt" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on alkuperäinen jakaja" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen uudelleen ei ole sallittu" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska tiedostoa ei löytynyt tiedostovälimuistista" #: private/tags.php:193 #, php-format diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index ad7595a433..8d077ff0d7 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 08:11+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Sähköposti lähetetty" msgid "You need to set your user email before being able to send test emails." msgstr "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Lähetystila" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Salaus" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Tunnistautumistapa" @@ -375,7 +375,7 @@ msgstr "Asetusvaroitus" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki." #: templates/admin.php:79 #, php-format @@ -524,91 +524,111 @@ msgstr "Salli sähköposti-ilmoitukset" msgid "Allow users to send mail notification for shared files" msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Sähköpostipalvelin" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Tätä käytetään ilmoitusten lähettämiseen." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Lähettäjän osoite" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Tunnistautuminen vaaditaan" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Palvelimen osoite" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Portti" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Tilitiedot" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP-käyttäjätunnus" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP-salasana" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Testaa sähköpostiasetukset" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Lähetä sähköpostiviesti" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Loki" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Enemmän" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versio" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 3b84f9ce30..35d91bcfc6 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 08:11+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -32,7 +32,7 @@ msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Le nom de fichier ne peut être vide." @@ -41,18 +41,18 @@ msgstr "Le nom de fichier ne peut être vide." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" n'est pas un nom de fichier valide." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Le dossier cible a été déplacé ou supprimé." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -178,134 +178,126 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera msgid "URL cannot be empty" msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Impossible de créer le fichier" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Impossible de créer le dossier" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Erreur d'accès à l'URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Partager" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renommer" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Erreur lors du déplacement du fichier" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Erreur" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "En attente" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Erreur pendant la suppression du fichier." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" msgstr[1] "Téléversement de %n fichiers" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" n'est pas un nom de fichier valide." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" 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:138 +#: js/files.js:136 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 "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:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "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:331 +#: js/files.js:329 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:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Taille" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modifié" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ne peut être renommé" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 1ad2227f67..6831f9d7f7 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -6,13 +6,14 @@ # Christophe Lherieau <skimpax@gmail.com>, 2013-2014 # Cyril Glapa <kyriog@gmail.com>, 2013 # etiess <etiess@gmail.com>, 2013 +# ptit_boogy <ptit.boogy@gmail.com>, 2014 # ogre_sympathique <ogre.sympathique@speed.1s.fr>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +22,14 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,103 +297,108 @@ msgstr "Veuillez vous référer au <a href='%s'>guide d'installation</a>." msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Le partage de %s a échoué car l'utilisateur %s est le propriétaire de l'objet" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Le partage de %s a échoué car l'utilisateur %s n'existe pas" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Le partage de %s a échoué car l'utilisateur %s n'est membre d'aucun groupe auquel %s appartient" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Le partage de %s a échoué car cet objet est déjà partagé avec %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Le partage de %s a échoué car le groupe %s n'existe pas" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Le partage de %s a échoué car %s n'est pas membre du groupe %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Le partage de %s a échoué car un partage de lien n'est pas permis" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Le type de partage %s n'est pas valide pour %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Le réglage des permissions pour %s a échoué car les permissions dépassent celle accordée à %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Le réglage des permissions pour %s a échoué car l'objet n'a pas été trouvé" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Le partage de %s a échoué car l'utilisateur %s est déjà l'utilisateur à l'origine du partage." -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Le partage de %s a échoué car les permissions dépassent les permissions accordées à %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Le partage de %s a échoué car le repartage n'est pas autorisé" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Le partage de %s a échoué car le fichier n'a pas été trouvé dans les fichiers mis en cache." #: private/tags.php:193 #, php-format diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 42cc8cb0a4..c13fa5fe4b 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 08:11+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -58,15 +58,15 @@ msgstr "Email envoyé" msgid "You need to set your user email before being able to send test emails." msgstr "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoyer des e-mails de test." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Mode d'envoi" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Chiffrement" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Méthode d'authentification" @@ -534,91 +534,111 @@ msgstr "Autoriser les notifications par couriel" msgid "Allow users to send mail notification for shared files" msgstr "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forcer les clients à se connecter à %s via une connexion chiffrée." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Serveur mail" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Ceci est utilisé pour l'envoi des notifications." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Adresse source" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authentification requise" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse du serveur" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Informations d'identification" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nom d'utilisateur SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Mot de passe SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Paramètres de test d'e-mail" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Envoyer un e-mail" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Plus" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Moins" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index 892e66ce56..03c3942d27 100644 --- a/l10n/fr_CA/files.po +++ b/l10n/fr_CA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index 09727cd39d..65455a870c 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index f117288070..19a3565236 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/gl/files.po b/l10n/gl/files.po index a34fba6ea6..7e2aaf64c9 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 10:24+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome." msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "O nome de ficheiro non pode estar baleiro" @@ -38,18 +38,18 @@ msgstr "O nome de ficheiro non pode estar baleiro" msgid "\"%s\" is an invalid file name." msgstr "«%s» é un nome incorrecto de ficheiro." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "O cartafol de destino foi movido ou eliminado." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará msgid "URL cannot be empty" msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "«Shared» dentro do cartafol persoal é un nome reservado" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Non foi posíbel crear o ficheiro" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Produciuse un erro ao obter o URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Produciuse un erro ao mover o ficheiro" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Produciuse un erro ao eliminar o ficheiro." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" msgstr[1] "Cargando %n ficheiros" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "«{name}» é un nome incorrecto de ficheiro." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou sincronizar máis os ficheiros!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "O aplicativo de cifrado está activado, mais as chaves non foron inicializadas, saia da sesión e volva a acceder de novo" -#: js/files.js:138 +#: js/files.js:136 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 "A chave privada para o aplicativo de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nome de cartafol non válido. O uso de «Shared» está reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 02a26c87e1..f5b7f93813 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,103 +294,108 @@ msgstr "Volva comprobar as <a href='%s'>guías de instalación</a>" msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Fallou a compartición de %s, xa que o propietario do elemento é o usuario %s" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Fallou a compartición de %s, xa que o usuario %s non existe" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Fallou a compartición de %s, xa que o usuario %s non é membro de ningún grupo que sexa membro de %s" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Fallou a compartición de %s, xa que este elemento xa está compartido con %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Fallou a compartición de %s, xa que o grupo %s non existe" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Fallou a compartición de %s, xa que %s non é membro do grupo %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Fallou a compartición de %s, xa que non está permitido compartir con ligazóns" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Non se admite a compartición do tipo %s para %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Non é posíbel estabelecer permisos para %s, xa que os permisos superan os permisos concedidos a %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Non é posíbel estabelecer permisos para %s, xa que non se atopa o elemento" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "A infraestrutura de compartición %s ten que implementar a interface OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Non se atopou a infraestrutura de compartición %s" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Non se atopou a infraestrutura de compartición para %s" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Fallou a compartición de %s, xa que a compartición orixinal é do usuario %s" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Fallou a compartición de %s, xa que os permisos superan os permisos concedidos a %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Fallou a compartición de %s, xa que non está permitido repetir a compartción" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Fallou a compartición de %s, xa que a infraestrutura de compartición para %s non foi quen de atopar a orixe" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Fallou a compartición de %s, xa que non foi posíbel atopar o ficheiro na caché de ficheiros" #: private/tags.php:193 #, php-format diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 4e595e7c9b..cbf58427c9 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 10:24+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "Correo enviado" msgid "You need to set your user email before being able to send test emails." msgstr "É necesario configurar o correo do usuario antes de poder enviar mensaxes de correo de proba." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Método de autenticación" @@ -525,91 +525,111 @@ msgstr "Permitir o envío de notificacións por correo" msgid "Allow users to send mail notification for shared files" msgstr "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar que os clientes se conecten a %s empregando unha conexión cifrada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de correo" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Isto utilizase para o envío de notificacións." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Desde o enderezo" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Requírese autenticación" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Enderezo do servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nome de usuario SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Contrasinal SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Correo de proba dos axustes" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Enviar o correo" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Máis" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/he/files.po b/l10n/he/files.po index bb48eacb83..496e6e3c4b 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "לא ניתן להעביר את %s - קובץ בשם הזה כבר קי msgid "Could not move %s" msgstr "לא ניתן להעביר את %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "שם קובץ אינו יכול להיות ריק" @@ -38,18 +38,18 @@ msgstr "שם קובץ אינו יכול להיות ריק" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד ת msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "שתף" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "שגיאה" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "שם" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "גודל" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "זמן שינוי" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 6a707e23dd..e7a0612123 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "נא לעיין שוב ב<a href='%s'>מדריכי ההתקנה</a>." msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index a28368def9..9111523a3b 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "הודעת הדוא״ל נשלחה" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "הצפנה" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "כתובת שרת" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "פורט" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "פרטי גישה" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "יומן" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "יותר" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "פחות" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "גרסא" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 96c95a364f..855fb53f40 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "साझा करें" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "त्रुटि" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index dac38b91b2..3e99b87307 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 359c0fbdfd..cb8cd6f4aa 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "ईमेल भेज दिया गया है " msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 530f648abb..328595c123 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Greška" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Zadnja promjena" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index c89d48b91f..586424f6c7 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 7701040cd5..106cdb3359 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "više" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index b3717afaec..2b3289f1b0 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a név msgid "Could not move %s" msgstr "Nem sikerült %s áthelyezése" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "A fájlnév nem lehet semmi." @@ -38,18 +38,18 @@ msgstr "A fájlnév nem lehet semmi." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a fel msgid "URL cannot be empty" msgstr "Az URL-cím nem maradhat kitöltetlenül" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Az állomány nem hozható létre" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "A mappa nem hozható létre" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "A megadott URL-ről nem sikerül adatokat kapni" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Megosztás" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Az állomány áthelyezése nem sikerült." -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Hiba" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Az állomány nem nevezhető át" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Hiba a file törlése közben." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" msgstr[1] "%n állomány" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} és {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n állomány feltöltése" msgstr[1] "%n állomány feltöltése" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "A tároló majdnem tele van ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!" -#: js/files.js:138 +#: js/files.js:136 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 "Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Méret" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Módosítva" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 2b52cf384d..ef59513e38 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sherlock79 <david@interpont.hu>, 2013 +# sherlock79 <inactive+sherlock79@transifex.com>, 2013 # ebela <bela@dandre.hu>, 2013 # Laszlo Tornoci <torlasz@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -20,6 +20,14 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -287,99 +295,104 @@ msgstr "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmu msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 8fadff9a29..9824dfce4a 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,15 +4,15 @@ # # Translators: # Adam Toth <adazlord@gmail.com>, 2013 -# sherlock79 <david@interpont.hu>, 2013 +# sherlock79 <inactive+sherlock79@transifex.com>, 2013 # ebela <bela@dandre.hu>, 2013 # Laszlo Tornoci <torlasz@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "Az emailt elküldtük" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Titkosítás" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -527,91 +527,111 @@ msgstr "E-mail értesítések engedélyezése" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "A kiszolgáló címe" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Azonosítók" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Több" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Verzió" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 4a376c6189..9ffd18d4f8 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 3b3b5ffa6b..fdd86ad09c 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index ff928e69b3..f48d5efc3c 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 4df7c41aab..87fa0438cd 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# giogio <g.sora@tiscali.it>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 15:10+0000\n" +"Last-Translator: giogio <g.sora@tiscali.it>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr "Data de expiration es in le passato." #: ajax/share.php:119 ajax/share.php:161 #, php-format @@ -28,27 +29,27 @@ msgstr "" #: ajax/update.php:10 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Activate modo de mantenentia" #: ajax/update.php:13 msgid "Turned off maintenance mode" -msgstr "" +msgstr "De-activar modo de mantenentia" #: ajax/update.php:16 msgid "Updated database" -msgstr "" +msgstr "Base de datos actualisate" #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Il forniva necun imagine o file" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Typo de file incognite" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imagine invalide" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -134,65 +135,65 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Configurationes" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." -msgstr "" +msgstr "Salveguardante..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" -msgstr "" +msgstr "secundas passate" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n minuta passate" +msgstr[1] "%n minutas passate" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n hora passate" +msgstr[1] "%n horas passate" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" -msgstr "" +msgstr "hodie" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" -msgstr "" +msgstr "heri" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" -msgstr "" +msgstr "ultime mense" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" -msgstr "" +msgstr "ultime anno" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" -msgstr "" +msgstr "annos passate" #: js/oc-dialogs.js:125 msgid "Choose" -msgstr "" +msgstr "Seliger" #: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" @@ -200,15 +201,15 @@ msgstr "" #: js/oc-dialogs.js:177 msgid "Yes" -msgstr "" +msgstr "Si" #: js/oc-dialogs.js:187 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:204 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" @@ -217,24 +218,24 @@ msgstr "" #: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} conflicto de file" +msgstr[1] "{count} conflictos de file" #: js/oc-dialogs.js:366 msgid "One file conflict" -msgstr "" +msgstr "Un conflicto de file" #: js/oc-dialogs.js:372 msgid "New Files" -msgstr "" +msgstr "Nove files" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Files jam existente" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Qual files tu vole mantener?" #: js/oc-dialogs.js:376 msgid "" @@ -248,7 +249,7 @@ msgstr "Cancellar" #: js/oc-dialogs.js:394 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" @@ -260,31 +261,31 @@ msgstr "" #: js/oc-dialogs.js:466 msgid "Error loading file exists template" -msgstr "" +msgstr "Error quando on incargava patrono de file existente" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Contrasigno multo debile" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Contrasigno debile" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Contrasigno passabile" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Contrasigno bon" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Contrasigno forte" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Compartite" #: js/share.js:109 msgid "Share" @@ -297,35 +298,35 @@ msgstr "Error" #: js/share.js:160 js/share.js:790 msgid "Error while sharing" -msgstr "" +msgstr "Error quando on compartiva" #: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "Error quando on levava le compartir" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Error quando on modificava permissiones" #: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Compartite con te e le gruppo {group} per {owner}" #: js/share.js:190 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Compartite con te per {owner} " #: js/share.js:214 msgid "Share with user or group …" -msgstr "" +msgstr "Compartir con usator o gruppo ..." #: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "Compartir ligamine" #: js/share.js:223 msgid "Password protect" -msgstr "" +msgstr "Protegite per contrasigno" #: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" @@ -333,11 +334,11 @@ msgstr "Contrasigno" #: js/share.js:230 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitter incargamento public" #: js/share.js:234 msgid "Email link to person" -msgstr "" +msgstr "Ligamine de e-posta a persona" #: js/share.js:235 msgid "Send" @@ -345,19 +346,19 @@ msgstr "Invia" #: js/share.js:240 msgid "Set expiration date" -msgstr "" +msgstr "Fixa data de expiration" #: js/share.js:241 msgid "Expiration date" -msgstr "" +msgstr "Data de expiration" #: js/share.js:277 msgid "Share via email:" -msgstr "" +msgstr "Compartir via e-posta:" #: js/share.js:280 msgid "No people found" -msgstr "" +msgstr "Il trovava nulle persona" #: js/share.js:324 js/share.js:385 msgid "group" @@ -365,11 +366,11 @@ msgstr "gruppo" #: js/share.js:357 msgid "Resharing is not allowed" -msgstr "" +msgstr "Il non es permittite compartir plus que un vice" #: js/share.js:401 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Compartite in {item} con {user}" #: js/share.js:423 msgid "Unshare" @@ -377,7 +378,7 @@ msgstr "Leva compartir" #: js/share.js:431 msgid "notify by email" -msgstr "" +msgstr "notificar per message de e-posta" #: js/share.js:434 msgid "can edit" @@ -385,55 +386,55 @@ msgstr "pote modificar" #: js/share.js:436 msgid "access control" -msgstr "" +msgstr "controlo de accesso" #: js/share.js:439 msgid "create" -msgstr "" +msgstr "crear" #: js/share.js:442 msgid "update" -msgstr "" +msgstr "actualisar" #: js/share.js:445 msgid "delete" -msgstr "" +msgstr "deler" #: js/share.js:448 msgid "share" -msgstr "" +msgstr "compartir" #: js/share.js:721 msgid "Password protected" -msgstr "" +msgstr "Proteger con contrasigno" #: js/share.js:734 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Error quando on levava le data de expiration" #: js/share.js:752 msgid "Error setting expiration date" -msgstr "" +msgstr "Error quando on fixava le data de expiration" #: js/share.js:777 msgid "Sending ..." -msgstr "" +msgstr "Inviante ..." #: js/share.js:788 msgid "Email sent" -msgstr "" +msgstr "Message de e-posta inviate" #: js/share.js:812 msgid "Warning" -msgstr "" +msgstr "Aviso" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "Le typo de objecto non es specificate" #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Inserta nove" #: js/tags.js:27 msgid "Delete" @@ -445,7 +446,7 @@ msgstr "Adder" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Modifica etiquettas" #: js/tags.js:57 msgid "Error loading dialog template: {error}" @@ -457,33 +458,33 @@ msgstr "" #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Pro favor recarga le pagina." #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "Le actualisation terminava sin successo. Pro favor tu reporta iste problema al <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Le actualisation terminava con successo. On redirige nunc a tu ownCloud." #: lostpassword/controller.php:70 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s contrasigno re-fixate" #: lostpassword/controller.php:72 msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Un problema ha occurrite quando on inviava le message de e-posta, pro favor continge tu administrator." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Usa le ligamine sequente pro re-fixar tu contrasigno: {link}" #: lostpassword/templates/lostpassword.php:7 msgid "" @@ -519,7 +520,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Re-fixar" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -547,7 +548,7 @@ msgstr "" #: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Pro le exitos melior, pro favor tu considera usar in loco un servitor GNU/Linux." #: strings.php:5 msgid "Personal" @@ -571,11 +572,11 @@ msgstr "Adjuta" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Error quando on cargava etiquettas" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Etiquetta ja existe" #: tags/controller.php:64 msgid "Error deleting tag(s)" @@ -618,16 +619,16 @@ msgstr "" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Le compartir expirara le %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Acclamationes!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Aviso de securitate" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -636,7 +637,7 @@ msgstr "" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Pro favor actualisa tu installation de PHP pro usar %s con securitate." #: templates/installation.php:33 msgid "" @@ -669,7 +670,7 @@ msgstr "Crear un <strong>conto de administration</strong>" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Immagazinage & base de datos" #: templates/installation.php:77 msgid "Data folder" @@ -697,7 +698,7 @@ msgstr "Nomine de base de datos" #: templates/installation.php:132 msgid "Database tablespace" -msgstr "" +msgstr "Spatio de tabella de base de datos" #: templates/installation.php:140 msgid "Database host" @@ -705,11 +706,11 @@ msgstr "Hospite de base de datos" #: templates/installation.php:150 msgid "Finish setup" -msgstr "" +msgstr "Terminar configuration" #: templates/installation.php:150 msgid "Finishing …" -msgstr "" +msgstr "Terminante ..." #: templates/layout.user.php:40 msgid "" @@ -729,7 +730,7 @@ msgstr "Clauder le session" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Accesso de autorisation refusate!" #: templates/login.php:10 msgid "" @@ -739,15 +740,15 @@ msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Pro favor modifica tu contrasigno pro asssecurar de nove tu conto" #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Il falleva authentication de latere servitor!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Pro favor continge tu administrator." #: templates/login.php:46 msgid "Lost your password?" @@ -763,7 +764,7 @@ msgstr "Aperir session" #: templates/login.php:60 msgid "Alternative Logins" -msgstr "" +msgstr "Accessos de autorisation alternative" #: templates/mail.php:15 #, php-format @@ -788,7 +789,7 @@ msgstr "" #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Gratias pro tu patientia." #: templates/update.admin.php:3 #, php-format diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 8d845151f7..96ac1fa27c 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Dimension" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificate" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" @@ -356,7 +348,7 @@ msgstr "File de texto" #: templates/index.php:12 msgid "New folder" -msgstr "" +msgstr "Nove dossier" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 6397e61090..c94d75f85c 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 15:30+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" @@ -41,29 +41,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -76,7 +76,7 @@ msgstr "" #: templates/settings.php:8 templates/settings.php:27 msgid "Folder name" -msgstr "" +msgstr "Nomine de dossier" #: templates/settings.php:9 msgid "External storage" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index d0be345d97..331c7c30f4 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -55,11 +63,11 @@ msgstr "" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Typo de file incognite" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Imagine invalide" #: private/defaults.php:35 msgid "web services under your control" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" @@ -389,27 +402,27 @@ msgstr "" #: private/template/functions.php:134 msgid "seconds ago" -msgstr "" +msgstr "secundas passate" #: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n minutas passate" #: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n horas passate" #: private/template/functions.php:137 msgid "today" -msgstr "" +msgstr "hodie" #: private/template/functions.php:138 msgid "yesterday" -msgstr "" +msgstr "heri" #: private/template/functions.php:140 msgid "%n day go" @@ -419,7 +432,7 @@ msgstr[1] "" #: private/template/functions.php:142 msgid "last month" -msgstr "" +msgstr "ultime mense" #: private/template/functions.php:143 msgid "%n month ago" @@ -429,11 +442,11 @@ msgstr[1] "" #: private/template/functions.php:145 msgid "last year" -msgstr "" +msgstr "ultime anno" #: private/template/functions.php:146 msgid "years ago" -msgstr "" +msgstr "annos passate" #: private/user/manager.php:232 msgid "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 4d49d8b7bd..499e1889ea 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -41,21 +41,21 @@ msgstr "" #: admin/controller.php:99 msgid "Email sent" -msgstr "" +msgstr "Message de e-posta inviate" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -231,23 +231,23 @@ msgstr "" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Contrasigno multo debile" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Contrasigno debile" #: js/personal.js:276 msgid "So-so password" -msgstr "" +msgstr "Contrasigno passabile" #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "Contrasigno bon" #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "Contrasigno forte" #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." @@ -348,7 +348,7 @@ msgstr "" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" -msgstr "" +msgstr "Aviso de securitate" #: templates/admin.php:50 #, php-format @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Plus" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 971df2a428..05e1a6a247 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 15:10+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" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "" @@ -144,7 +144,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "" @@ -285,7 +285,7 @@ msgstr "Retro" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Continuar" #: templates/settings.php:11 msgid "" diff --git a/l10n/id/files.po b/l10n/id/files.po index 2344f6033d..80fb510d8c 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -28,7 +28,7 @@ msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" msgid "Could not move %s" msgstr "Tidak dapat memindahkan %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Nama berkas tidak boleh kosong." @@ -37,18 +37,18 @@ msgstr "Nama berkas tidak boleh kosong." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,131 +174,123 @@ msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses msgid "URL cannot be empty" msgstr "URL tidak boleh kosong" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Tidak dapat membuat berkas" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Tidak dapat membuat folder" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Bagikan" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Galat saat memindahkan berkas" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Galat" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Tidak dapat mengubah nama berkas" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Galat saat menghapus berkas." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n berkas" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} dan {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Mengunggah %n berkas" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi" -#: js/files.js:138 +#: js/files.js:136 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 "Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Ukuran" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Dimodifikasi" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s tidak dapat diubah nama" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 18118cf1fe..90b9921303 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Silakan periksa ulang <a href='%s'>panduan instalasi</a>." msgid "%s shared »%s« with you" msgstr "%s membagikan »%s« dengan anda" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index c1fe83f4b4..1ce9c6bf3c 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Email terkirim" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Enkripsi" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "Izinkan pemberitahuan email" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Alamat server" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Catat" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Lainnya" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versi" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/is/files.po b/l10n/is/files.po index cdaed9930a..f9cc83e0c1 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Nafn skráar má ekki vera tómt" @@ -36,18 +36,18 @@ msgstr "Nafn skráar má ekki vera tómt" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending mis msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Deila" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Villa" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Stærð" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Breytt" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 2bc042e6fe..cce021e1db 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 5ed711d9c1..b726e8a309 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Tölvupóstur sendur" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Dulkóðun" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Host nafn netþjóns" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Meira" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Minna" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/it/files.po b/l10n/it/files.po index f7579891b1..96b1206254 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 23:33+0000\n" -"Last-Translator: idetao <marcxosm@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,7 +30,7 @@ msgstr "Impossibile spostare %s - un file con questo nome esiste già" msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Il nome del file non può essere vuoto." @@ -39,18 +39,18 @@ msgstr "Il nome del file non può essere vuoto." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" non è un nome file valido." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "La cartella di destinazione è stata spostata o eliminata." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,134 +176,126 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Nella cartella home 'Shared' è un nome riservato" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Impossibile creare il file" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Impossibile creare la cartella" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Errore durante il recupero dello URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Condividi" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Errore durante lo spostamento del file" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Errore" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "In corso" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Errore durante l'eliminazione del file." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" msgstr[1] "Caricamento di %n file in corso" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" non è un nome file valido." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso" -#: js/files.js:138 +#: js/files.js:136 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 "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Dimensione" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificato" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s non può essere rinominato" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 61cf71193a..3f16402ee1 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,103 +296,108 @@ msgstr "Leggi attentamente le <a href='%s'>guide d'installazione</a>." msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Condivisione di %s non riuscita, poiché l'utente %s è il proprietario dell'oggetto" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché l'utente %s non esiste" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché l'utente %s non appartiene ad alcun gruppo di cui %s è membro" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché il gruppo %s non esiste" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché %s non appartiene al gruppo %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché i link non sono ammessi" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Il tipo di condivisione %s non è valido per %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Il motore di condivisione %s deve implementare l'interfaccia OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Motore di condivisione %s non trovato" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Motore di condivisione di %s non trovato" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso precedentemente" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché i permessi sono superiori a quelli rilasciati a %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché la ri-condivisione non è ammessa" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua origine" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché il file non risiede nella cache" #: private/tags.php:193 #, php-format diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 520335ddac..343893ee43 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 23:31+0000\n" -"Last-Translator: idetao <marcxosm@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "Email inviata" msgid "You need to set your user email before being able to send test emails." msgstr "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio delle email." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modalità di invio" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifratura" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Metodo di autenticazione" @@ -527,91 +527,111 @@ msgstr "Consenti le notifiche tramite posta elettronica" msgid "Allow users to send mail notification for shared files" msgstr "Consenti agli utenti di mandare e-mail di notifica per i file condivisi" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Protezione" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Server di posta" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Viene utilizzato per inviare le notifiche." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Indirizzo mittente" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autenticazione richiesta" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Indirizzo del server" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porta" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenziali" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nome utente SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Prova impostazioni email" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Invia email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Altro" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Meno" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versione" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ja/files.po b/l10n/ja/files.po index cc1723751b..8b53c80c95 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -34,7 +34,7 @@ msgstr "%s を移動できませんでした ― この名前のファイルは msgid "Could not move %s" msgstr "%s を移動できませんでした" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "ファイル名を空にすることはできません。" @@ -43,18 +43,18 @@ msgstr "ファイル名を空にすることはできません。" msgid "\"%s\" is an invalid file name." msgstr "\"%s\" は無効なファイル名です。" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "目標のフォルダは移動されたか、削除されました。" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -180,131 +180,123 @@ msgstr "ファイル転送を実行中です。今このページから移動す msgid "URL cannot be empty" msgstr "URL は空にできません" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在します" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "ファイルを作成できませんでした" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "フォルダーを作成できませんでした" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "URL取得エラー" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "共有" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "ファイルの移動エラー" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "エラー" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "中断" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "ファイルの名前変更ができませんでした" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "ファイルの削除エラー。" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個のフォルダー" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個のファイル" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} と {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個のファイルをアップロード中" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" は無効なファイル名です。" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "ストレージがほぼ一杯です({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" -#: js/files.js:138 +#: js/files.js:136 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 "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "名前" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "サイズ" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "更新日時" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "無効なフォルダー名。「Shared」の利用は予約されています。" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 9a1364fed7..b5739f97c5 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -22,6 +22,14 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -289,99 +297,104 @@ msgstr "<a href='%s'>インストールガイド</a>をよく確認してくだ msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index 449ce5efff..3019b69a37 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -52,15 +52,15 @@ msgstr "メールを送信しました" msgid "You need to set your user email before being able to send test emails." msgstr "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "送信モード" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "暗号化" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "認証方法" @@ -528,91 +528,111 @@ msgstr "メール通知を許可" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化します。" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "メールサーバー" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "これは通知の送信に使われます。" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "アドレスから" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "要求される認証" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "サーバーアドレス" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "ポート" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "資格情報" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP ユーザー名" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP パスワード" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "メールテスト設定" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "メールを送信" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "ログ" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "もっと見る" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "閉じる" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "バージョン" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/jv/files.po b/l10n/jv/files.po index 5b2f6e443b..49027add41 100644 --- a/l10n/jv/files.po +++ b/l10n/jv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/jv/lib.po b/l10n/jv/lib.po index 0915bb223d..353c66e7ba 100644 --- a/l10n/jv/lib.po +++ b/l10n/jv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: jv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index fe9b21e6e5..3644843d73 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 92c896554f..aa89d7c7ba 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "%s –ის გადატანა ვერ მოხერხდა msgid "Could not move %s" msgstr "%s –ის გადატანა ვერ მოხერხდა" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." @@ -36,18 +36,18 @@ msgstr "ფაილის სახელი არ შეიძლება msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "მიმდინარეობს ფაილის ატვირ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "გაზიარება" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "შეცდომა" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "სახელი" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "ზომა" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "შეცვლილია" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index b7d235cf31..1572016e29 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "გთხოვთ გადაათვალიეროთ <a href='% msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 63260285df..857558b5be 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "იმეილი გაიგზავნა" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "ენკრიპცია" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "სერვერის მისამართი" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "პორტი" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "იუზერ/პაროლი" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/km/files.po b/l10n/km/files.po index 16c907800e..83d79c5c43 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "ចែករំលែក" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "កំហុស" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "ឈ្មោះ" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "ទំហំ" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 84aafbd299..3f0078754b 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,6 +18,14 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 23a00b4f69..1a3a0cff7c 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "បានផ្ញើអ៊ីមែល" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "កូដនីយកម្ម" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -525,91 +525,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "សុវត្ថិភាព" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "បង្ខំ HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "អាសយដ្ឋានម៉ាស៊ីនបម្រើ" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "កម្រិត Log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "ច្រើនទៀត" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "តិច" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "កំណែ" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 2ff94b7e64..75d448c056 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 087a9e594e..4cee69fe77 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 7249040d4f..81d7d001d5 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ko/files.po b/l10n/ko/files.po index d66a039e17..87d3b833e5 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -33,7 +33,7 @@ msgstr "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 msgid "Could not move %s" msgstr "항목 %s을(를) 이동시킬 수 없음" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "파일 이름이 비어 있을 수 없습니다." @@ -42,18 +42,18 @@ msgstr "파일 이름이 비어 있을 수 없습니다." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -179,131 +179,123 @@ msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 msgid "URL cannot be empty" msgstr "URL이 비어있을 수 없음" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "파일을 만들 수 없음" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "폴더를 만들 수 없음" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "URL을 가져올 수 없음" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "공유" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "영구히 삭제" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "파일 이동 오류" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "오류" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "이름을 변경할 수 없음" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "파일 삭제 오류." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "폴더 %n개" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "파일 %n개" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} 그리고 {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "파일 %n개 업로드 중" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오" -#: js/files.js:138 +#: js/files.js:136 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 "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "이름" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "크기" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "수정됨" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s의 이름을 변경할 수 없습니다" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index a3d740a0d6..3282c2f6e6 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -22,6 +22,14 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -289,99 +297,104 @@ msgstr "<a href='%s'>설치 가이드</a>를 다시 한 번 확인하십시오." msgid "%s shared »%s« with you" msgstr "%s 님이 %s을(를) 공유하였습니다" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 2c0186c6f7..5146c505d0 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -52,15 +52,15 @@ msgstr "이메일 발송됨" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "암호화" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -528,91 +528,111 @@ msgstr "메일 알림 허용" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "보안" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "전자우편 서버" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "보낸 이 주소" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "인증 필요함" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "서버 주소" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "포트" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "자격 정보" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP 사용자명" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP 암호" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "시험용 전자우편 설정" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "전자우편 보내기" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "로그" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "더 중요함" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "버전" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 48266f0cc6..854432bc02 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "هاوبەشی کردن" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "ههڵه" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "ناو" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 9f9aa8fd22..b7415893ec 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index ac3dc088f0..28870a3e3d 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "نهێنیکردن" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "ناونیشانی ڕاژه" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 7c7f917f67..f137298360 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofg msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Deelen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Ëm-benennen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Gréisst" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Geännert" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 392bc813a9..e875ee307c 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 2f42e135ce..619604ebe1 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Email geschéckt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Server Adress" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Méi" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Manner" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index c0027ad321..62282b8398 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,7 +30,7 @@ msgstr "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja" msgid "Could not move %s" msgstr "Nepavyko perkelti %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Failo pavadinimas negali būti tuščias." @@ -39,18 +39,18 @@ msgstr "Failo pavadinimas negali būti tuščias." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,137 +176,129 @@ msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutr msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Neįmanoma sukurti failo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Klauda gaunant URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Dalintis" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Klaida perkeliant failą" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Klaida" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Neįmanoma pervadinti failo" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Klaida trinant failą." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" msgstr[1] "%n failai" msgstr[2] "%n failų" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} ir {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Įkeliamas %n failas" msgstr[1] "Įkeliami %n failai" msgstr[2] "Įkeliama %n failų" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Jūsų visa vieta serveryje užimta" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti" -#: js/files.js:138 +#: js/files.js:136 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 "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Dydis" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Pakeista" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 1dde1d9c2d..1ebb5244f1 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,99 +296,104 @@ msgstr "Prašome pažiūrėkite dar kartą <a href='%s'>diegimo instrukcijas</a> msgid "%s shared »%s« with you" msgstr "%s pasidalino »%s« su tavimi" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 1d104c2197..350980eba0 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -52,15 +52,15 @@ msgstr "Laiškas išsiųstas" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifravimas" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -528,91 +528,111 @@ msgstr "Leisti el. pašto perspėjimą" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Verčia klientus jungtis prie %s per šifruotą ryšį." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Prašome prisijungti prie savo %s per HTTPS, kad įjungti ar išjungti SSL reikalavimą." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Serverio adresas" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Prievadas" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Daugiau" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versija" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lv/files.po b/l10n/lv/files.po index d1c39d7bb3..9b3ff96f19 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -28,7 +28,7 @@ msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" msgid "Could not move %s" msgstr "Nevarēja pārvietot %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Datnes nosaukums nevar būt tukšs." @@ -37,18 +37,18 @@ msgstr "Datnes nosaukums nevar būt tukšs." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,137 +174,129 @@ msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Dalīties" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Kļūda" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" msgstr[1] "%n fails" msgstr[2] "%n faili" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n" msgstr[1] "Augšupielāde %n failu" msgstr[2] "Augšupielāde %n failus" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nosaukums" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Izmērs" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Mainīts" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 7a7d03523e..57643d7f43 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,6 +18,14 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Lūdzu, vēlreiz pārbaudiet <a href='%s'>instalēšanas palīdzību</a> msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 8a4ea7c52b..720551be48 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Vēstule nosūtīta" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifrēšana" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Drošība" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Uzspiest klientiem pieslēgties pie %s caur šifrētu savienojumu." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Lūdzu slēdzieties pie %s caur HTTPS lai iespējotu vai atspējotu SSL izpildīšanu" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Servera adrese" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Ports" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Akreditācijas dati" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Vairāk" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versija" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 60288a5f0c..61ca9d6d95 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -28,7 +28,7 @@ msgstr "Не можам да го преместам %s - Датотека со msgid "Could not move %s" msgstr "Не можам да ги префрлам %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Името на датотеката не може да биде празно." @@ -37,18 +37,18 @@ msgstr "Името на датотеката не може да биде пра msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,134 +174,126 @@ msgstr "Подигање на датотека е во тек. Напуштењ msgid "URL cannot be empty" msgstr "URL-то не може да биде празно" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Не множам да креирам датотека" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Не можам да креирам папка" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Сподели" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Трајно избришани" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Грешка при префрлање на датотека" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Грешка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Чека" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Не можам да ја преименувам датотеката" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Вашиот сториџ е полн, датотеките веќе не можат да се освежуваат или синхронизираат!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Вашиот сториџ е скоро полн ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Големина" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Променето" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s не може да биде преименуван" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index ab88decb08..99993662a9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 66c5b91e91..6918bfbeec 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Е-порака пратена" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Енкрипција" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "Овозможи известување по електронска по msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адреса на сервер" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Порта" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Записник" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Повеќе" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Помалку" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Верзија" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ml/files.po b/l10n/ml/files.po index 833a2dc55d..11605e3122 100644 --- a/l10n/ml/files.po +++ b/l10n/ml/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ml/lib.po b/l10n/ml/lib.po index 9b18b8c069..a9665cfcf2 100644 --- a/l10n/ml/lib.po +++ b/l10n/ml/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index 873ea5feae..bb4bf53233 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index d2182dd3d0..452ed789cf 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index e2d3ce261c..89380c67c3 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 8dabc76b3d..3dd09c0bcf 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/mn/files.po b/l10n/mn/files.po index d42551ca82..1a530ea9e1 100644 --- a/l10n/mn/files.po +++ b/l10n/mn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/mn/lib.po b/l10n/mn/lib.po index 0ba562d487..f0985c92ea 100644 --- a/l10n/mn/lib.po +++ b/l10n/mn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index aab6d4b79f..487e064ed3 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 340a13a8c6..d42cd65699 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Kongsi" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Namakan" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Ralat" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Saiz" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Dimodifikasi" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index a8145ee4df..7def985584 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 0bb3d17d5d..249b907cc7 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Alamat pelayan" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 97826d20d6..b02ef38781 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index ab59c1e32b..95f11d4383 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index f4a4215acd..964ffe75da 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 66c6511bd3..e01523ab83 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -31,7 +31,7 @@ msgstr "Kan ikke flytte %s - En fil med samme navn finnes allerede" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Filnavn kan ikke være tomt." @@ -40,18 +40,18 @@ msgstr "Filnavn kan ikke være tomt." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,134 +177,126 @@ msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "I hjemmemappen er 'Shared' et reservert filnavn" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Klarte ikke å opprette fil" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Klarte ikke å opprette mappe" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Feil ved henting av URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Del" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Gi nytt navn" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Feil ved flytting av fil" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Feil" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Klarte ikke å gi nytt navn til fil" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Feil ved sletting av fil." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laster opp %n fil" msgstr[1] "Laster opp %n filer" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringsplass er nesten brukt opp ([usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "App for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og logg inn igjen." -#: js/files.js:138 +#: js/files.js:136 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 "Ugyldig privat nøkkel for Krypterings-app. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering ble slått av men filene dine er fremdeles kryptert. Gå til dine personlige innstillinger for å dekryptere filene dine." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Størrelse" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Endret" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ulovlig mappenavn. Bruken av 'Shared' er reservert." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index f799a36058..6979989c40 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,6 +19,14 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index d109f8b390..a5a8b1efa7 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "E-post sendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -527,91 +527,111 @@ msgstr "Tillat påminnelser i e-post" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvinger klientene til å koble til %s via en kryptert forbindelse." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Vennligst koble til din %s via HTTPS for å aktivere eller deaktivere tvungen SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Fra adresse" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Server-adresse" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP-brukernavn" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP-passord" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Send e-post" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logg" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mer" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versjon" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 9798a89bf0..e7b2817c4f 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index b7c0c86c54..7b5bc15867 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index 9ab6b674d2..f08a085c0e 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 368e981636..b788633a4c 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 702c6f532f..b2d62c5b52 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 74a3a50b03..b38cfc9657 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 0de2218602..5f9e9f93c4 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 19:18+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Bestandsnaam kan niet leeg zijn." @@ -38,18 +38,18 @@ msgstr "Bestandsnaam kan niet leeg zijn." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" is een ongeldige bestandsnaam." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "De doelmap is verplaatst of verwijderd." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de u msgid "URL cannot be empty" msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Kon bestand niet creëren" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Kon niet creëren map" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fout bij ophalen URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Delen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fout bij verplaatsen bestand" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fout" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Fout bij verwijderen bestand." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" msgstr[1] "%n bestanden aan het uploaden" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" is een ongeldige bestandsnaam." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in." -#: js/files.js:138 +#: js/files.js:136 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 "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Grootte" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Aangepast" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 1e135da68d..6c0ccbbe5d 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -20,6 +20,14 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -287,99 +295,104 @@ msgstr "Controleer de <a href='%s'>installatiehandleiding</a> goed." msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 9fa5da4d6c..dad578d0cb 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 19:18+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "E-mail verzonden" msgid "You need to set your user email before being able to send test emails." msgstr "U moet uw e-mailadres instellen voordat u testberichten kunt versturen." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Verstuurmodus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Versleuteling" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Authenticatiemethode" @@ -527,91 +527,111 @@ msgstr "Toestaan e-mailnotificaties" msgid "Allow users to send mail notification for shared files" msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-mailserver" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Dit wordt gestuurd voor het verzenden van meldingen." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Afzenderadres" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authenticatie vereist" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Server adres" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Poort" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Inloggegevens" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP gebruikersnaam" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP wachtwoord" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Test e-mailinstellingen" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Versturen e-mail" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Meer" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Minder" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versie" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 0efab54f71..3eeb614380 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,7 +30,7 @@ msgstr "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet" msgid "Could not move %s" msgstr "Klarte ikkje flytta %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Filnamnet kan ikkje vera tomt." @@ -39,18 +39,18 @@ msgstr "Filnamnet kan ikkje vera tomt." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,134 +176,126 @@ msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbrot msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Del" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Feil ved flytting av fil" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Feil" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lastar opp %n fil" msgstr[1] "Lastar opp %n filer" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringa di er nesten full ({usedSpacePercent} %)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Storleik" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Endra" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 09e48965bb..b21742c6dc 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Ver venleg og dobbeltsjekk <a href='%s'>installasjonsrettleiinga</a>." msgid "%s shared »%s« with you" msgstr "%s delte «%s» med deg" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 28284ea31b..4eb5652398 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "E-post sendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -526,91 +526,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klientar til å kopla til %s med ei kryptert tilkopling." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Ver venleg å kopla til %s med HTTPS (eller skru av SSL-kravet)." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Tenaradresse" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logg" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Meir" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index f07a5aa64b..c602a04290 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index f59370d050..d156c452f5 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index d59a28ea0d..ac0aafcecb 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/oc/files.po b/l10n/oc/files.po index d74ed7c572..c1b030daaa 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo carga msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Parteja" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Talha" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 121200c85c..5e23aada74 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 3678b57ca9..3044613b23 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Jornal" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/or_IN/files.po b/l10n/or_IN/files.po index 5297c12540..0f62762155 100644 --- a/l10n/or_IN/files.po +++ b/l10n/or_IN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po index 495eae5b05..3b0afaf281 100644 --- a/l10n/or_IN/lib.po +++ b/l10n/or_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: or_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/or_IN/settings.po b/l10n/or_IN/settings.po index 970127c656..4a0898c092 100644 --- a/l10n/or_IN/settings.po +++ b/l10n/or_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pa/files.po b/l10n/pa/files.po index d2098c7aa8..da22e59a2a 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "ਨਾਂ ਬਦਲੋ" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "ਗਲਤੀ" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index 2f059f913e..9008d834aa 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 1e9c29e76c..db15bbc6f8 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "ਸਰਵਰ ਐਡਰੈਸ" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 2730643a33..689ee4af57 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 10:34+0000\n" -"Last-Translator: bobie <maciej.przybecki@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -33,7 +33,7 @@ msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Nazwa pliku nie może być pusta." @@ -42,18 +42,18 @@ msgstr "Nazwa pliku nie może być pusta." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" jest nieprawidłową nazwą pliku." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Folder docelowy został przeniesiony lub usunięty" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -179,137 +179,129 @@ msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie z msgid "URL cannot be empty" msgstr "URL nie może być pusty" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Nie można utworzyć pliku" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Nie można utworzyć folderu" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Błąd przy pobieraniu adresu URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Udostępnij" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Błąd prz przenoszeniu pliku" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Błąd" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Błąd podczas usuwania pliku" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" msgstr[1] "Wysyłanie %n plików" msgstr[2] "Wysyłanie %n plików" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" jest nieprawidłową nazwą pliku." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Twój magazyn jest prawie pełny ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikacja szyfrująca jest aktywna, ale twoje klucze nie zostały zainicjowane, prosze wyloguj się i zaloguj ponownie." -#: js/files.js:138 +#: js/files.js:136 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 "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz. Można zaktualizować hasło klucza prywatnego w ustawieniach osobistych w celu odzyskania dostępu do plików" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Rozmiar" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modyfikacja" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 87fb61c2dc..62de5ed13a 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,103 +294,108 @@ msgstr "Sprawdź ponownie <a href='%s'>przewodniki instalacji</a>." msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest właścicielem elementu" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s nie istnieje" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s nie jest członkiem żadnej grupy której członkiem jest %s" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ element jest już współdzielony z %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ grupa %s nie istnieje" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ %s nie jest członkiem grupy %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ współdzielenie z linkami nie jest dozwolone" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Typ udziału %s nie jest właściwy dla %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ uprawnienia wykraczają poza przydzielone %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie został znaleziony" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Zaplecze do współdzielenia %s musi implementować interfejs OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Zaplecze %s do współdzielenia nie zostało znalezione" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Zaplecze do współdzielenia %s nie zostało znalezione" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest udostępniającym" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ uprawnienia przekraczają te udzielone %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ ponowne współdzielenie nie jest dozwolone" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ zaplecze współdzielenia dla %s nie mogło znaleźć jego źródła" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ plik nie może zostać odnaleziony w buforze plików" #: private/tags.php:193 #, php-format diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 26e58d91c7..7692687c57 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 10:34+0000\n" -"Last-Translator: bobie <maciej.przybecki@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "E-mail wysłany" msgid "You need to set your user email before being able to send test emails." msgstr "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomości testowe." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Tryb wysyłki" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Szyfrowanie" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Metoda autentykacji" @@ -526,91 +526,111 @@ msgstr "Pozwól na mailowe powiadomienia" msgid "Allow users to send mail notification for shared files" msgstr "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Serwer pocztowy" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "To jest używane do wysyłania powiadomień" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Z adresu" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Wymagana autoryzacja" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adres Serwera" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Poświadczenia" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Użytkownik SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Hasło SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Ustawienia testowej wiadomości" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Wyślij email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logi" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Więcej" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mniej" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Wersja" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 42291ff389..7b4f254221 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:31+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,7 +30,7 @@ msgstr "Impossível mover %s - Um arquivo com este nome já existe" msgid "Could not move %s" msgstr "Impossível mover %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "O nome do arquivo não pode estar vazio." @@ -39,18 +39,18 @@ msgstr "O nome do arquivo não pode estar vazio." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" é um nome de arquivo inválido." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "A pasta de destino foi movida ou excluída." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,134 +176,126 @@ msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do msgid "URL cannot be empty" msgstr "URL não pode estar vazia" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Não foi possível criar o arquivo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Não foi possível criar a pasta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Erro ao buscar URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartilhar" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Erro movendo o arquivo" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Erro eliminando o arquivo." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" msgstr[1] "Enviando %n arquivos" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" é um nome de arquivo inválido." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Seu armazenamento está quase cheio ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "App de encriptação está ativado, mas as chaves não estão inicializadas, por favor log-out e faça login novamente" -#: js/files.js:138 +#: js/files.js:136 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 "Chave do App de Encriptação é inválida. Por favor, atualize sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamanho" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nome da pasta inválido. Uso de 'Shared' é reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index de90637bce..34aeb81931 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,103 +293,108 @@ msgstr "Por favor, confira os <a href='%s'>guias de instalação</a>." msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Compartilhamento %s falhou, porque o usuário %s é o proprietário do item" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o usuário %s não existe" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o usuário %s não é membro de nenhum grupo que o usuário %s pertença" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Compartilhamento %s falhou, porque este ítem já está compartilhado com %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o grupo %s não existe" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Compartilhamento %s falhou, porque %s não é membro do grupo %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Compartilhamento %s falhou, porque compartilhamento com links não é permitido" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Tipo de compartilhamento %s não é válido para %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Compartilhando backend %s deve implementar a interface OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Compartilhamento backend %s não encontrado" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Compartilhamento backend para %s não encontrado" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Compartilhando %s falhou, porque o usuário %s é o compartilhador original" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Compartilhamento %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Compartilhamento %s falhou, porque recompartilhamentos não são permitidos" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Compartilhamento %s falhou, porque a infra-estrutura de compartilhamento para %s não conseguiu encontrar a sua fonte" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o arquivo não pôde ser encontrado no cache de arquivos" #: private/tags.php:193 #, php-format diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 35c10ae2eb..12f8932fc8 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:31+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Você precisa configurar seu e-mail de usuário antes de ser capaz de enviar e-mails de teste." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modo enviar" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Criptografia" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Método de autenticação" @@ -525,91 +525,111 @@ msgstr "Permitir notificação por email" msgid "Allow users to send mail notification for shared files" msgstr "Permitir aos usuários enviar notificação de email para arquivos compartilhados" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Segurança" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de Email" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Isto é usado para o envio de notificações." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Do Endereço" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autenticação é requerida" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porta" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nome do Usuário SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Senha SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Configurações de e-mail de teste" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mais" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versão" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 7712e0ca5e..8fd301269a 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -31,7 +31,7 @@ msgstr "Não pôde mover o ficheiro %s - Já existe um ficheiro com esse nome" msgid "Could not move %s" msgstr "Não foi possível move o ficheiro %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "O nome do ficheiro não pode estar vazio." @@ -40,18 +40,18 @@ msgstr "O nome do ficheiro não pode estar vazio." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,134 +177,126 @@ msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página msgid "URL cannot be empty" msgstr "URL não pode estar vazio" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Não pôde criar ficheiro" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Não pôde criar pasta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Erro ao obter URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Partilhar" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Erro ao mover o ficheiro" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Não pôde renomear o ficheiro" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Erro ao apagar o ficheiro." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "A carregar %n ficheiro" msgstr[1] "A carregar %n ficheiros" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "O seu armazenamento está cheio, os ficheiros não podem ser sincronizados." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "A Aplicação de Encriptação está ativada, mas as suas chaves não inicializaram. Por favor termine e inicie a sessão novamente" -#: js/files.js:138 +#: js/files.js:136 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 "Chave privada inválida da Aplicação de Encriptação. Por favor atualize a sua senha de chave privada nas definições pessoais, para recuperar o acesso aos seus ficheiros encriptados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "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:331 +#: js/files.js:329 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:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamanho" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 182227a14f..8aab0d9e28 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -6,14 +6,14 @@ # Mouxy <daniel@mouxy.net>, 2013 # Duarte Velez Grilo <duartegrilo@gmail.com>, 2013 # moura232 <moura232@gmail.com>, 2013 -# Helder Meneses <helder.meneses@gmail.com>, 2013 +# Helder Meneses <helder.meneses@gmail.com>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 14:50+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\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" @@ -76,13 +76,13 @@ msgstr "" msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Não foi possível desencriptar este ficheiro, possivelmente é um ficheiro partilhado. Peça ao proprietário do ficheiro para voltar a partilhar o ficheiro consigo." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Erro desconhecido. Verifique por favor as definições do sistema ou contacte o seu administrador" #: hooks/hooks.php:64 msgid "Missing requirements." @@ -109,97 +109,97 @@ msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Ir directamente para o seu" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "configurações personalizadas " -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Encriptação" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Chave de recuperação da conta" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Activado" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Desactivado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Alterar a chave de recuperação:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Chave anterior de recuperação da conta" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nova chave de recuperação da conta" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Mudar a Password" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Password anterior da conta" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Password actual da conta" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "ativar recuperação do password:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Ao activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password." -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Actualizadas as definições de recuperação de ficheiros" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "Não foi possível actualizar a recuperação de ficheiros" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index ab8309c2a0..91ba10b835 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -20,6 +20,14 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -287,99 +295,104 @@ msgstr "Por favor verifique <a href='%s'>installation guides</a>." msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 725d568302..910abe6402 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -54,15 +54,15 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Encriptação" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -530,91 +530,111 @@ msgstr "Permitir notificação por email" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Segurança" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forçar os clientes a ligar a %s através de uma ligação encriptada" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de email" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Isto é utilizado para enviar notificações" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Do endereço" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autenticação necessária" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nome de utilizador SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Testar configurações de email" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registo" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mais" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versão" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 6a5fd3a8b1..2e27cacbbe 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 19:20+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" @@ -138,63 +138,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Setări" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Se salvează..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "astăzi" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "ieri" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "ultima lună" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "ultimul an" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "ani în urmă" @@ -273,11 +273,11 @@ msgstr "" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Parolă foarte slabă" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Parolă slabă" #: js/setup.js:86 msgid "So-so password" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index bb6268901e..72e67b0dc9 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mozguletz <__sashok@mail.ru>, 2014 # andreiacob <andrei.iacob@y7mail.com>, 2014 # roentgen <arthur.titeica@gmail.com>, 2014 # corneliu.e <corneliueva@yahoo.com>, 2013 @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -34,27 +35,27 @@ msgstr "%s nu se poate muta - Fișierul cu acest nume există deja " msgid "Could not move %s" msgstr "Nu se poate muta %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Numele fișierului nu poate rămâne gol." #: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" este un nume de fișier nevalid" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Dosarul țintă a fost mutat sau șters." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -63,7 +64,7 @@ msgstr "" #: ajax/newfile.php:97 msgid "Not a valid source" -msgstr "" +msgstr "Sursă nevalidă" #: ajax/newfile.php:102 msgid "" @@ -156,12 +157,12 @@ msgstr "Nu se poate încărca {filename} deoarece este un director sau are mări #: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Mărimea fișierului este {size1} ce depășește limita de incarcare de {size2}" #: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Spațiu liber insuficient, încărcați {size1} însă doar {size2} disponibil rămas" #: js/file-upload.js:353 msgid "Upload cancelled." @@ -180,137 +181,129 @@ msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerup msgid "URL cannot be empty" msgstr "URL nu poate fi gol" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} există deja" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Nu s-a putut crea fisierul" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Nu s-a putut crea folderul" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" -msgstr "" +msgstr "Eroare încarcare URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Partajează" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Șterge permanent" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Redenumește" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Eroare la mutarea fișierului" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Eroare" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Nu s-a putut redenumi fisierul" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." -msgstr "" +msgstr "Eroare la ștergerea fisierului." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" msgstr[1] "%n fișiere" msgstr[2] "%n fișiere" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} și {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Se încarcă %n fișier." msgstr[1] "Se încarcă %n fișiere." msgstr[2] "Se încarcă %n fișiere." -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" este un nume de fișier nevalid." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Spațiul de stocare este plin, fișierele nu mai pot fi actualizate sau sincronizate!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Spațiul de stocare este aproape plin ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Se pregătește descărcarea. Aceasta poate dura ceva timp dacă fișierele sunt mari." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Mărime" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" @@ -318,7 +311,7 @@ msgstr "%s nu a putut fi redenumit" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Încarcă (max. %s)" #: templates/admin.php:4 msgid "File handling" @@ -358,7 +351,7 @@ msgstr "Nou" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Un nou fișier text" #: templates/index.php:9 msgid "Text file" @@ -366,7 +359,7 @@ msgstr "Fișier text" #: templates/index.php:12 msgid "New folder" -msgstr "" +msgstr "Un nou dosar" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 6ec7ba546e..c749df94cd 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</a>." msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index edb9cda2e6..2b244fc458 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mozguletz <__sashok@mail.ru>, 2014 # corneliu.e <corneliueva@yahoo.com>, 2013 # sergiu_sechel <sergiu.sechel@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,11 +31,11 @@ msgstr "Salvat" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "verifică setările de e-mail" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Dacă ai primit acest e-mail atunci setările par a fi corecte." #: admin/controller.php:94 msgid "" @@ -49,17 +50,17 @@ msgstr "Mesajul a fost expediat" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" -msgstr "" +msgstr "Modul de expediere" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Încriptare" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" -msgstr "" +msgstr "Modul de autentificare" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -72,11 +73,11 @@ msgstr "Eroare la autentificare" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Numele tău complet a fost schimbat." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Nu s-a puput schimba numele complet" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -88,17 +89,17 @@ msgstr "Nu s-a putut adăuga grupul" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Fișierele au fost decriptate cu succes" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Nu s-a puput decripta fișierele tale, verifică owncloud.log sau întreabă administratorul" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Nu s-a puput decripta fișierele tale, verifică parola și încearcă din nou" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -148,7 +149,7 @@ msgstr "Parolă greșită" #: changepassword/controller.php:36 msgid "No user supplied" -msgstr "" +msgstr "Nici un utilizator furnizat" #: changepassword/controller.php:68 msgid "" @@ -173,7 +174,7 @@ msgstr "Imposibil de schimbat parola" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Se expediază..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -201,11 +202,11 @@ msgstr "Aşteptaţi vă rog...." #: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" -msgstr "" +msgstr "Eroare în timpul dezactivării aplicației" #: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" -msgstr "" +msgstr "Eroare în timpul activării applicației" #: js/apps.js:149 msgid "Updating...." @@ -229,15 +230,15 @@ msgstr "Actualizat" #: js/personal.js:243 msgid "Select a profile picture" -msgstr "" +msgstr "Selectează o imagine de profil" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Parolă foarte slabă" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Parolă slabă" #: js/personal.js:276 msgid "So-so password" @@ -253,7 +254,7 @@ msgstr "" #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Decriptare fișiere... Te rog așteaptă, poate dura ceva timp." #: js/users.js:47 msgid "deleted" @@ -298,7 +299,7 @@ msgstr "Trebuie să furnizaţi o parolă validă" #: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Avertizare: Dosarul Acasă pentru utilizatorul \"{user}\" deja există" #: personal.php:48 personal.php:49 msgid "__language_name__" @@ -342,11 +343,11 @@ msgstr "" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -381,7 +382,7 @@ msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sin #: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." -msgstr "" +msgstr "Vă rugăm să verificați <a href=\"%s\">ghiduri de instalare</ a>." #: templates/admin.php:90 msgid "Module 'fileinfo' missing" @@ -395,7 +396,7 @@ msgstr "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest mod #: templates/admin.php:104 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Versiunea PHP folosită este învechită" #: templates/admin.php:107 msgid "" @@ -499,7 +500,7 @@ msgstr "Permite încărcări publice" #: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permite utilizatorilor sa activeze opțiunea de încărcare a fișierelor în dosarele lor publice de către alte persoane" #: templates/admin.php:235 msgid "Allow resharing" @@ -519,97 +520,117 @@ msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același gr #: templates/admin.php:253 msgid "Allow mail notification" -msgstr "" +msgstr "Permite notificări prin e-mail" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Securitate" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Forțează clienții să se conecteze la %s folosind o conexiune sigură" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresa server-ului" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Portul" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" -msgstr "" +msgstr "Nume utilizator SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" -msgstr "" +msgstr "Parolă SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" -msgstr "" +msgstr "Verifică setările de e-mail" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" -msgstr "" +msgstr "Expediază mesajul" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mai mult" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -706,7 +727,7 @@ msgstr "Schimbă parola" #: templates/personal.php:61 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "Nume complet" #: templates/personal.php:76 msgid "Email" @@ -728,11 +749,11 @@ msgstr "Imagine de profil" #: templates/personal.php:94 msgid "Upload new" -msgstr "" +msgstr "Încarcă una nouă" #: templates/personal.php:96 msgid "Select new from Files" -msgstr "" +msgstr "Selectează una din Fișiere" #: templates/personal.php:97 msgid "Remove image" @@ -740,7 +761,7 @@ msgstr "Înlătură imagine" #: templates/personal.php:98 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "Doar png sau jpg de formă pătrată. " #: templates/personal.php:100 msgid "Your avatar is provided by your original account." @@ -771,7 +792,7 @@ msgstr "WebDAV" msgid "" "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " "WebDAV</a>" -msgstr "" +msgstr "Folosește această adresă <a href=\"%s\" target=\"_blank\">pentru acces la fișierele tale folosind WebDAV</a>" #: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" @@ -779,11 +800,11 @@ msgstr "" #: templates/personal.php:157 msgid "Log-in password" -msgstr "" +msgstr "Parolă" #: templates/personal.php:162 msgid "Decrypt all Files" -msgstr "" +msgstr "Decriptează toate fișierele" #: templates/users.php:19 msgid "Login Name" @@ -795,13 +816,13 @@ msgstr "Crează" #: templates/users.php:34 msgid "Admin Recovery Password" -msgstr "" +msgstr "Parolă de recuperare a Administratorului" #: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Introdu parola de recuperare pentru a recupera fișierele utilizatorilor în timpul schimbării parolei" #: templates/users.php:40 msgid "Default Storage" @@ -829,7 +850,7 @@ msgstr "Stocare" #: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "schimbă numele complet" #: templates/users.php:110 msgid "set new password" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 6f7fbe2af7..8c1d9aecec 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -39,7 +39,7 @@ msgstr "Невозможно переместить %s - файл с таким msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Имя файла не может быть пустым." @@ -48,18 +48,18 @@ msgstr "Имя файла не может быть пустым." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" это не правильное имя файла." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Целевой каталог был перемещен или удален." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -185,137 +185,129 @@ msgstr "Идёт загрузка файла. Покинув страницу, msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "'Shared' - это зарезервированное имя файла в домашнем каталоге" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Не удалось создать файл" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Не удалось создать каталог" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Ошибка получения URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Открыть доступ" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Удалить окончательно" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Ошибка при перемещении файла" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Ошибка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Не удалось переименовать файл" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Ошибка при удалении файла." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n каталог" msgstr[1] "%n каталога" msgstr[2] "%n каталогов" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файла" msgstr[2] "%n файлов" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Закачка %n файла" msgstr[1] "Закачка %n файлов" msgstr[2] "Закачка %n файлов" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" это не правильное имя файла." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше хранилище заполнено, произведите очистку перед загрузкой новых файлов." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь" -#: js/files.js:138 +#: js/files.js:136 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 "Закрытый ключ приложения шифрования недействителен. Обновите закрытый ключ в личных настройках, чтобы восстановить доступ к зашифрованным файлам." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Шифрование было отключено, но ваши файлы остались зашифрованными. Зайдите на страницу личных настроек для того, чтобы расшифровать их." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Идёт подготовка к скачиванию. Это может занять некоторое время, если файлы большого размера." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Имя" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Дата изменения" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s не может быть переименован" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 379364d97a..738a44e4a1 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -24,6 +24,14 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -291,99 +299,104 @@ msgstr "Пожалуйста, дважды просмотрите <a href='%s'> msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 8894a19713..0d1481475c 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -62,15 +62,15 @@ msgstr "Письмо отправлено" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Шифрование" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -538,91 +538,111 @@ msgstr "Разрешить уведомление по почте" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адрес сервера" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Порт" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Полномочия" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Журнал" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Уровень детализации журнала" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Больше" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Меньше" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Версия" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index c2b7eceb77..0a2c9f318c 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "දෝෂයක්" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "ප්රමාණය" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "වෙනස් කළ" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index cc3a48c015..e7fbe2f721 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index d276c9eceb..1bcf2f4f2b 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "ගුප්ත කේතනය" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "සේවාදායකයේ ලිපිනය" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "තොට" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "වැඩි" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "අඩු" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sk/files.po b/l10n/sk/files.po index e98673d655..1a5f19fb30 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 4e039dc17a..de9e07230c 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index e88024cd09..9d9d3a33b4 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index f76a3099e2..1327e6bfc5 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -28,7 +28,7 @@ msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" msgid "Could not move %s" msgstr "Nie je možné presunúť %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Meno súboru nemôže byť prázdne" @@ -37,18 +37,18 @@ msgstr "Meno súboru nemôže byť prázdne" msgid "\"%s\" is an invalid file name." msgstr "\"%s\" je neplatné meno súboru." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Cieľový priečinok bol premiestnený alebo odstránený." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,137 +174,129 @@ msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." msgid "URL cannot be empty" msgstr "URL nemôže byť prázdna" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Nemožno vytvoriť súbor" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Chyba pri načítavaní URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Chyba pri presúvaní súboru" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Chyba" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Nemožno premenovať súbor" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Chyba pri mazaní súboru." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" msgstr[1] "%n súbory" msgstr[2] "%n súborov" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávam %n súbor" msgstr[1] "Nahrávam %n súbory" msgstr[2] "Nahrávam %n súborov" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" je neplatné meno súboru." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložisko je takmer plné ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste." -#: js/files.js:138 +#: js/files.js:136 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 "Chybný súkromný kľúč na šifrovanie aplikácií. Zaktualizujte si heslo súkromného kľúča v svojom osobnom nastavení, aby ste znovu získali prístup k svojim zašifrovaným súborom." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Názov" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Veľkosť" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Upravené" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 8b3d08256f..92d4f5a9d5 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>." msgid "%s shared »%s« with you" msgstr "%s s vami zdieľa »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index f39c5f873e..8373c69dd4 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "Email odoslaný" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Mód odosielania" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifrovanie" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Autentifikačná metóda" @@ -525,91 +525,111 @@ msgstr "Povoliť odosielať upozornenia emailom" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynúti pripájanie klientov k %s šifrovaným pripojením." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Email server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Z adresy" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresa servera" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Prihlasovanie údaje" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP používateľské meno" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP heslo" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Odoslať email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Záznam" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Viac" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menej" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Verzia" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sl/files.po b/l10n/sl/files.po index e5bf374f77..cc291cc794 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja." msgid "Could not move %s" msgstr "Datoteke %s ni mogoče premakniti" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Ime datoteke ne sme biti prazno polje." @@ -38,18 +38,18 @@ msgstr "Ime datoteke ne sme biti prazno polje." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" je neveljavno ime datoteke." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Ciljna mapa je premaknjena ali izbrisana." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,59 +175,55 @@ msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošilja msgid "URL cannot be empty" msgstr "Polje naslova URL ne sme biti prazno" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo." - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Ni mogoče ustvariti datoteke" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Napaka pridobivanja naslova URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Souporaba" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Napaka premikanja datoteke" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Napaka" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Ni mogoče preimenovati datoteke" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Napaka brisanja datoteke." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapa" @@ -235,7 +231,7 @@ msgstr[1] "%n mapi" msgstr[2] "%n mape" msgstr[3] "%n map" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n datoteka" @@ -243,11 +239,11 @@ msgstr[1] "%n datoteki" msgstr[2] "%n datoteke" msgstr[3] "%n datotek" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} in {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Posodabljanje %n datoteke" @@ -255,60 +251,56 @@ msgstr[1] "Posodabljanje %n datotek" msgstr[2] "Posodabljanje %n datotek" msgstr[3] "Posodabljanje %n datotek" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" je neveljavno ime datoteke." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Prostor za shranjevanje je skoraj do konca zaseden ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite." -#: js/files.js:138 +#: js/files.js:136 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 "Ni ustreznega osebnega ključa za program za šifriranje. Posodobite osebni ključ za dostop do šifriranih datotek med nastavitvami." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Velikost" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Spremenjeno" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ni mogoče preimenovati" @@ -316,7 +308,7 @@ msgstr "%s ni mogoče preimenovati" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Pošiljanje (omejitev %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 46cd7f25c6..6e8ca0aa09 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Preverite <a href='%s'>navodila namestitve</a>." msgid "%s shared »%s« with you" msgstr "%s je omogočil souporabo »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Nastavljanje souporabe %s je spodletelo, ker je uporabnik %s lastnik predmeta." + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ne obstaja." -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član nobene skupine, v kateri je tudi uporabnik %s." -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletela, ker je ima uporabnik %s predmet že v souporabi." -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker je skupina %s ne obstaja." -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član skupine %s." -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker souporaba preko povezave ni dovoljena." -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Vrsta souporabe %s za %s ni veljavna." -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Ozadnjega programa %s za souporabo ni mogoče najti" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Ozadnjega programa za souporabo za %s ni mogoče najti" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 08a73d5825..c422f3555d 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -34,12 +34,12 @@ msgstr "preizkusi nastavitve elektronske pošte" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Če ste prejeli to sporočilo, so nastavitve pravilne." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Prišlo je do napake med pošiljanjem sporočila na elektronski naslov. Spremeniti je treba nastavitve." #: admin/controller.php:99 msgid "Email sent" @@ -49,15 +49,15 @@ msgstr "Elektronska pošta je poslana" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Način pošiljanja" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifriranje" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Način overitve" @@ -445,18 +445,18 @@ msgstr "Periodično opravilo" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Zadnje opravilo cron je bilo izvedeno ob %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Zadnje opravilo cron je bilo izvedeno ob %s. To je več kot uro nazaj. Nekaj je očitno narobe." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Opravilo Cron še ni zagnano!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" @@ -523,93 +523,113 @@ msgstr "Dovoli obvestila preko elektronske pošte" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti." + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:278 msgid "Security" msgstr "Varnost" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vsili povezavo odjemalca z %s preko šifrirane povezave." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Poštni strežnik" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Zahtevana je overitev" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Naslov strežnika" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Vrata" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Poverila" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Uporabniško ime SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Geslo SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Preizkus nastavitev elektronske pošte" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Pošlji elektronsko sporočilo" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Več" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Manj" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Različica" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 879f8c7555..b3d42df532 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "E pa mundur zhvendosja e %s - ekziston nje skedar me te njetin emer" msgid "Could not move %s" msgstr "Nuk mund të zhvendoset %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Emri i skedarit nuk mund të jetë bosh." @@ -38,18 +38,18 @@ msgstr "Emri i skedarit nuk mund të jetë bosh." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" msgid "URL cannot be empty" msgstr "URL-i nuk mund të jetë bosh" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} është ekzistues " -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "I pamundur krijimi i kartelës" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Ndaj" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Fshi përfundimisht" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Riemëro" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Gabim lëvizjen dokumentave" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Gabim" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Në vijim" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" msgstr[1] "%n skedarë" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} dhe {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Po ngarkoj %n skedar" msgstr[1] "Po ngarkoj %n skedarë" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Hapsira juaj e arkivimit është plot, skedarët nuk mund të përditësohen ose sinkronizohen!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Hapsira juaj e arkivimit është pothuajse në fund ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Shkarkimi juaj është duke u përgatitur. Kjo mund të kërkojë kohë nëse skedarët janë të mëdhenj." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Emri" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Madhësia" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Ndryshuar" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index bd16549814..29db7acc77 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>." msgid "%s shared »%s« with you" msgstr "%s ndau »%s« me ju" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 0f7ca7d023..f2e9339df6 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Email-i u dërgua" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Siguria" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Detyro HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porta" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Historik aktiviteti" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Niveli i Historikut" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Më tepër" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "M'pak" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versioni" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 11e7f11340..2ece07bd1c 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "Не могу да преместим %s – датотека с ови msgid "Could not move %s" msgstr "Не могу да преместим %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Име датотеке не може бити празно." @@ -36,18 +36,18 @@ msgstr "Име датотеке не може бити празно." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "Отпремање датотеке је у току. Ако сада н msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Дели" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Грешка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Величина" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Измењено" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index fb962337e4..49b85c5410 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Погледајте <a href='%s'>водиче за инсталациј msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 4691d1e387..58fbbae97c 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Порука је послата" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Шифровање" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адреса сервера" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Порт" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Бележење" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Више" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Мање" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Верзија" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index f7a9bdebf4..b2c300486f 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Podeli" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Preimenij" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Greška" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Zadnja izmena" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 2cfe024582..65c7d8036d 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 312bf5473b..db0d8ebbd6 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Email poslat" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/su/files.po b/l10n/su/files.po index 8de270c09b..e8e5da24f7 100644 --- a/l10n/su/files.po +++ b/l10n/su/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/su/lib.po b/l10n/su/lib.po index 4d3929c27c..4a16c9c911 100644 --- a/l10n/su/lib.po +++ b/l10n/su/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: su\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/su/settings.po b/l10n/su/settings.po index 3d504c44ba..88706c97e7 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sv/core.po b/l10n/sv/core.po index fc9f4fd593..e83bb24047 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -5,6 +5,7 @@ # Translators: # AsavarTzeth <asavartzeth@gmail.com>, 2014 # Daniel Sandman <revoltism@gmail.com>, 2013 +# enoch85 <enoch85@gmail.com>, 2014 # Gunnar Norin <blittan@xbmc.org>, 2013 # Gustav Smedberg <shadow.elf@hotmail.com>, 2013 # medialabs, 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 13:01+0000\n" +"Last-Translator: enoch85 <enoch85@gmail.com>\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" @@ -142,59 +143,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Inställningar" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Sparar..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "i dag" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "i går" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "förra månaden" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "förra året" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "år sedan" @@ -621,7 +622,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n" +msgstr "Hej där!,\n\nVi vill bara meddela att %s delade %s med dig.\nTitta på den här: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format @@ -630,7 +631,7 @@ msgstr "Utdelningen kommer att upphöra %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "Vi höres!" +msgstr "Ha de fint!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 445f27234a..83fada0113 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -6,6 +6,7 @@ # AsavarTzeth <asavartzeth@gmail.com>, 2014 # DanielMalmgren <daniel@kolefors.se>, 2013 # Daniel Sandman <revoltism@gmail.com>, 2013 +# enoch85 <enoch85@gmail.com>, 2014 # Gunnar Norin <blittan@xbmc.org>, 2013 # Gustav Smedberg <shadow.elf@hotmail.com>, 2013 # medialabs, 2013 @@ -16,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -36,7 +37,7 @@ msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Filnamn kan inte vara tomt." @@ -45,18 +46,18 @@ msgstr "Filnamn kan inte vara tomt." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" är ett ogiltigt filnamn." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Målmappen har flyttats eller tagits bort." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -182,134 +183,126 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "URL cannot be empty" msgstr "URL kan ej vara tomt" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Kunde ej skapa fil" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Kunde ej skapa katalog" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fel vid hämtning av URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Dela" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fel uppstod vid flyttning av fil" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fel" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Kan ej byta filnamn" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Kunde inte ta bort filen." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} och {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laddar upp %n fil" msgstr[1] "Laddar upp %n filer" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" är ett ogiltligt filnamn." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen" -#: js/files.js:138 +#: js/files.js:136 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 "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Storlek" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Ändrad" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" @@ -317,7 +310,7 @@ msgstr "%s kunde inte namnändras" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Ladda upp (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 6fc4c5c725..b7858c13ef 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -4,15 +4,16 @@ # # Translators: # AsavarTzeth <asavartzeth@gmail.com>, 2014 +# enoch85 <enoch85@gmail.com>, 2014 # henrikhjelm <mailto@henrikhjelm.se>, 2014 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 11:30+0000\n" -"Last-Translator: henrikhjelm <mailto@henrikhjelm.se>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+0000\n" +"Last-Translator: enoch85 <enoch85@gmail.com>\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" @@ -44,34 +45,34 @@ msgstr "Fel vid konfigurering av Google Drive" msgid "Saved" msgstr "Sparad" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " msgstr "<b> OBS: </ b>" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "och" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "<b> OBS: </ b> cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." +msgstr "<b> OBS: </ b> cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "<b> OBS: </ b> Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." +msgstr "<b> OBS: </ b> Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "<b> OBS: </ b> \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." +msgstr "<b> OBS: </ b> \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör att installera det." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index cb9a685d2a..4612c74c01 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -5,6 +5,7 @@ # Translators: # AsavarTzeth <asavartzeth@gmail.com>, 2014 # Daniel Sandman <revoltism@gmail.com>, 2013 +# enoch85 <enoch85@gmail.com>, 2014 # henrikhjelm <mailto@henrikhjelm.se>, 2014 # medialabs, 2013 # kallemooo <karl.h.thoren@gmail.com>, 2013 @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -24,6 +25,14 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -291,103 +300,108 @@ msgstr "Var god kontrollera <a href='%s'>installationsguiden</a>." msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Delning %s misslyckades därför att användaren %s är den som äger objektet" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Delning %s misslyckades därför att användaren %s inte existerar" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Delning %s misslyckades därför att användaren %s inte är medlem i någon utav de grupper som %s är medlem i" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Delning %s misslyckades därför att objektet redan är delat med %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Delning %s misslyckades därför att gruppen %s inte existerar" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Delning %s misslyckades därför att %s inte ingår i gruppen %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Delning %s misslyckades därför att delning utav länkar inte är tillåtet" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Delningstyp %s är inte giltig för %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Misslyckades att sätta rättigheter för %s därför att rättigheterna överskrider de som är tillåtna för %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Att sätta rättigheterna för %s misslyckades därför att objektet inte hittades" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Delningsgränssnittet %s måste implementera gränssnittet OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Delningsgränssnittet %s hittades inte" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Delningsgränssnittet för %s hittades inte" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Delning %s misslyckades därför att användaren %s är den som delade objektet först" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Delning %s misslyckades därför att rättigheterna överskrider de rättigheter som är tillåtna för %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Delning %s misslyckades därför att vidaredelning inte är tillåten" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Delning %s misslyckades därför att delningsgränsnittet för %s inte kunde hitta sin källa" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Delning %s misslyckades därför att filen inte kunde hittas i filcachen" #: private/tags.php:193 #, php-format diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 99f3ae24b8..31f1d96bef 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -5,6 +5,7 @@ # Translators: # AsavarTzeth <asavartzeth@gmail.com>, 2014 # Daniel Sandman <revoltism@gmail.com>, 2013 +# enoch85 <enoch85@gmail.com>, 2014 # Gunnar Norin <blittan@xbmc.org>, 2013 # Gustav Smedberg <shadow.elf@hotmail.com>, 2013 # henrikhjelm <mailto@henrikhjelm.se>, 2014 @@ -18,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -58,15 +59,15 @@ msgstr "E-post skickat" msgid "You need to set your user email before being able to send test emails." msgstr "Du behöver ställa in din användares e-postadress före du kan skicka test e-post." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Sändningsläge" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Autentiseringsmetod" @@ -81,7 +82,7 @@ msgstr "Fel vid autentisering" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "Ditt fulla namn har ändrats" +msgstr "Hela ditt namn har ändrats" #: ajax/changedisplayname.php:34 msgid "Unable to change full name" @@ -97,7 +98,7 @@ msgstr "Kan inte lägga till grupp" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "Filer dekrypteras utan fel" +msgstr "Filerna dekrypterades utan fel" #: ajax/decryptall.php:33 msgid "" @@ -532,93 +533,113 @@ msgstr "Tillåt e-post notifikation" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Tillåt användare att skicka mailnotifieringar för delade filer" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-postserver" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Detta används för att skicka ut notifieringar." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Från adress" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autentisering krävs" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Serveradress" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Inloggningsuppgifter" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP användarnamn" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP lösenord" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Testa e-post inställninggar" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Skicka e-post" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logg" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mer" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 275cecc8fd..c8f351f5dc 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 8de7185991..0e5edf6897 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 525ca027ce..d18be24c39 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 8b8c81ad67..66dbd64884 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "கோப்பு பதிவேற்றம் செயல்பா msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "பகிர்வு" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "வழு" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "பெயர்" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "அளவு" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 0cff9cc46f..334ff77919 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index fc3cdcea42..868be97f59 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "மறைக்குறியீடு" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "சேவையக முகவரி" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "துறை " -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "சான்று ஆவணங்கள்" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/te/files.po b/l10n/te/files.po index 50b0717d87..5bedee1efa 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "పొరపాటు" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "పేరు" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 97177c36dc..dd35ccc118 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index aa6d2dc348..ce65801a92 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "సేవకి చిరునామా" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3b379726b2..da2bff21b7 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9098867f33..60883d08ed 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -28,7 +28,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -37,18 +37,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different name." @@ -173,133 +173,125 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7777b79c59..bcaf26ee2e 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 4249671016..ba18852737 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 1ceb58b2d1..0c99318f31 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index dc188cbf79..d41084e133 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 3fbca2717b..a83149715f 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 142859181d..5085fc5108 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -18,6 +18,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s " "is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index d9c628a1c5..a159a34d18 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -277,99 +277,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: share/share.php:490 +#: share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: share/share.php:496 +#: share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: share/share.php:505 +#: share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s " "is a member of" msgstr "" -#: share/share.php:518 share/share.php:546 +#: share/share.php:551 share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: share/share.php:526 +#: share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: share/share.php:533 +#: share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: share/share.php:596 +#: share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: share/share.php:603 +#: share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: share/share.php:740 +#: share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: share/share.php:801 +#: share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: share/share.php:895 +#: share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: share/share.php:902 +#: share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: share/share.php:908 +#: share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: share/share.php:1325 +#: share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: share/share.php:1334 +#: share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: share/share.php:1349 +#: share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: share/share.php:1361 +#: share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: share/share.php:1375 +#: share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index ed8bfbf1ef..134ff39cfd 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -522,90 +522,110 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank" "\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" " diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 95200b23de..b7649897ce 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index ae637283fc..8e69c2581c 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: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index acd5249bc5..a877abec6d 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ท msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "ชื่อไฟล์ไม่สามารถเว้นว่างได้" @@ -36,18 +36,18 @@ msgstr "ชื่อไฟล์ไม่สามารถเว้นว่า msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "แชร์" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "ชื่อ" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "ขนาด" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "แก้ไขแล้ว" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index d11c284a77..368b7226e7 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 051c00d0c7..5aefd0e5da 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "ส่งอีเมล์แล้ว" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "การเข้ารหัส" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "ที่อยู่เซิร์ฟเวอร์" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "พอร์ต" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "ข้อมูลส่วนตัวสำหรับเข้าระบบ" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "มาก" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "น้อย" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 5228d98bdb..2e078e122b 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:00+0000\n" -"Last-Translator: volkangezer <volkangezer@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -32,7 +32,7 @@ msgstr "%s taşınamadı. Bu isimde dosya zaten mevcut" msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Dosya adı boş olamaz." @@ -41,18 +41,18 @@ msgstr "Dosya adı boş olamaz." msgid "\"%s\" is an invalid file name." msgstr "'%s' geçersiz bir dosya adı." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Hedef klasör taşındı veya silindi." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -178,134 +178,126 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem msgid "URL cannot be empty" msgstr "URL boş olamaz" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Dosya oluşturulamadı" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Klasör oluşturulamadı" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Adres getirilirken hata" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Paylaş" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Dosya taşıma hatası" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Hata" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" msgstr[1] "%n dosya yükleniyor" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" geçersiz bir dosya adı." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın" -#: js/files.js:138 +#: js/files.js:136 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 "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "İsim" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Boyut" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Değiştirilme" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index c70944abd1..a8c8a4c4eb 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,103 +296,108 @@ msgstr "Lütfen <a href='%s'>kurulum kılavuzlarını</a> iki kez kontrol edin." msgid "%s shared »%s« with you" msgstr "%s sizinle »%s« paylaşımında bulundu" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "%s paylaşımı, %s öge sahibi olduğundan başarısız oldu" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "%s paylaşımı, %s kullanıcısı mevcut olmadığından başarısız oldu" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "%s paylaşımı, %s kullanıcısının %s üyeliklerinden birine sahip olmadığından başarısız oldu" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "%s paylaşımı, %s ile zaten paylaşıldığından dolayı başarısız oldu" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "%s paylaşımı, %s grubu mevcut olmadığından başarısız oldu" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "%s paylaşımı, %s kullanıcısı %s grup üyesi olmadığından başarısız oldu" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "%s paylaşımı, bağlantılar ile paylaşım izin verilmediğinden başarısız oldu" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "%s paylaşım türü %s için geçerli değil" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "%s için izinler, izinler %s için verilen izinleri aştığından dolayı ayarlanamadı" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "%s için izinler öge bulunamadığından ayarlanamadı" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Paylaşma arka ucu %s OCP\\Share_Backend arayüzünü desteklemeli" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Paylaşım arka ucu %s bulunamadı" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "%s için paylaşım arka ucu bulunamadı" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "%s paylaşımı, %s kullanıcısı özgün paylaşan kişi olduğundan başarısız oldu" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "%s paylaşımı, izinler %s için verilen izinleri aştığından dolayı başarısız oldu" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "%s paylaşımı, tekrar paylaşımın izin verilmemesinden dolayı başarısız oldu" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "%s paylaşımı, %s için arka ucun kaynağını bulamamasından dolayı başarısız oldu" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "%s paylaşımı, dosyanın dosya önbelleğinde bulunamamasınndan dolayı başarısız oldu" #: private/tags.php:193 #, php-format diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 2b6aae6991..738ac07225 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:10+0000\n" -"Last-Translator: volkangezer <volkangezer@gmail.com>\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "E-posta gönderildi" msgid "You need to set your user email before being able to send test emails." msgstr "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Gönderme kipi" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Şifreleme" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Kimlik doğrulama yöntemi" @@ -527,91 +527,111 @@ msgstr "Posta bilgilendirmesine izin ver" msgid "Allow users to send mail notification for shared files" msgstr "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen %s'a HTTPS ile bağlanın." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-Posta Sunucusu" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Bu, bildirimler gönderilirken kullanılır." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Kimden adresi" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Kimlik doğrulama gerekli" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Sunucu adresi" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Kimlik Bilgileri" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Kullanıcı Adı" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Parolası" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "E-posta ayarlarını sına" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "E-posta gönder" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Günlük" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Az" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index 707f99a954..b6a4f96717 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index d90cda5f05..54a93055d4 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 87462e65a2..73319d7bf5 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 8433443fba..1053459eed 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "%s يۆتكىيەلمەيدۇ" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋا msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "ھەمبەھىر" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "خاتالىق" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "ئاتى" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "ئۆزگەرتكەن" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 3409a80517..787145dd80 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index af673c0410..32bf6b17eb 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "شىفىرلاش" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "مۇلازىمېتىر ئادرىسى" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "ئېغىز" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "ئاز" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 466adb3e73..82100849f0 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# azdk94 <azdk94@gmail.com>, 2014 # volodya327 <volodya327@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 16:30+0000\n" +"Last-Translator: azdk94 <azdk94@gmail.com>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr "Термін дії минув." #: ajax/share.php:119 ajax/share.php:161 #, php-format @@ -135,63 +136,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Налаштування" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "сьогодні" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "вчора" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "минулого місяця" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "минулого року" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "роки тому" @@ -270,11 +271,11 @@ msgstr "Помилка при завантаженні файлу існуючо #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Дуже слабкий пароль" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Слабкий пароль" #: js/setup.js:86 msgid "So-so password" @@ -282,11 +283,11 @@ msgstr "" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Добрий пароль" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Надійний пароль" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -548,7 +549,7 @@ msgstr "Скинути пароль" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X не підтримується і %s не буде коректно працювати на цій платформі. Випробовуєте на свій риск!" #: setup/controller.php:144 msgid "" @@ -776,7 +777,7 @@ msgstr "Альтернативні Логіни" msgid "" "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> " "with you.<br><a href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "Агов,<br><br>просто щоб ви знали, що %s поділився »%s« з вами.<br><a href=\"%s\">Подивіться!</a><br><br>" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index cbb9d10fe2..e1581c7f5e 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +28,7 @@ msgstr "Не вдалося перемістити %s - Файл з таким msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr " Ім'я файлу не може бути порожнім." @@ -37,18 +37,18 @@ msgstr " Ім'я файлу не може бути порожнім." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,137 +174,129 @@ msgstr "Виконується завантаження файлу. Закрит msgid "URL cannot be empty" msgstr "URL не може бути порожнім" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Не вдалося створити файл" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Не вдалося створити теку" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Поділитися" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Помилка переміщення файлу" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Помилка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Неможливо перейменувати файл" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файлів" msgstr[2] "%n файли" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше сховище майже повне ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ім'я" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Розмір" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Змінено" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s не може бути перейменований" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 598c9e7f49..0641a0817f 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Будь ласка, перевірте <a href='%s'>інструкці msgid "%s shared »%s« with you" msgstr "%s розподілено »%s« з тобою" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 481bf1bd97..5f23c4f162 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Ел. пошта надіслана" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Шифрування" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -232,11 +232,11 @@ msgstr "" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Дуже слабкий пароль" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Слабкий пароль" #: js/personal.js:276 msgid "So-so password" @@ -244,11 +244,11 @@ msgstr "" #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "Добрий пароль" #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "Надійний пароль" #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Безпека" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адреса сервера" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Порт" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Облікові дані" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Протокол" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Більше" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Менше" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Версія" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ur/files.po b/l10n/ur/files.po index 5a528dd078..9ec874cc06 100644 --- a/l10n/ur/files.po +++ b/l10n/ur/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po index adb951f698..60ecd96b50 100644 --- a/l10n/ur/lib.po +++ b/l10n/ur/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index f346523b7a..227969e3ad 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index d4889dd755..0fa8e190f0 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "ایرر" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 75e40964d4..f8a8afab41 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index a365ceecd6..5174cf78ac 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/uz/files.po b/l10n/uz/files.po index 8a8f954d40..3642e1da36 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index e8d5252faf..edb77f7201 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index a63bd15c83..80247d7140 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 824d518f55..e11f9ad909 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -31,7 +31,7 @@ msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ th msgid "Could not move %s" msgstr "Không thể di chuyển %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Tên file không được rỗng" @@ -40,18 +40,18 @@ msgstr "Tên file không được rỗng" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,131 +177,123 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t msgid "URL cannot be empty" msgstr "URL không thể để trống" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Không thể tạo file" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Không thể tạo thư mục" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Chia sẻ" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Lỗi di chuyển tập tin" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Lỗi" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Không thể đổi tên file" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Lỗi xóa file," -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n thư mục" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tập tin" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} và {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Đang tải lên %n tập tin" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Your storage is full, files can not be updated or synced anymore!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Ứng dụng mã hóa đã được kích hoạt nhưng bạn chưa khởi tạo khóa. Vui lòng đăng xuất ra và đăng nhập lại" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Mã hóa đã bị vô hiệu nhưng những tập tin của bạn vẫn được mã hóa. Vui lòng vào phần thiết lập cá nhân để giải mã chúng." -#: js/files.js:331 +#: js/files.js:329 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:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Thay đổi" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s không thể đổi tên" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index b21af741c5..aa1cfdeeca 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s đã chia sẻ »%s« với bạn" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 2b090bd48a..a96f09c178 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Email đã được gửi" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Mã hóa" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Địa chỉ máy chủ" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Cổng" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Giấy chứng nhận" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "hơn" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "ít" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 1078d24b82..4e16a2a03c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -31,7 +31,7 @@ msgstr "无法移动 %s - 同名文件已存在" msgid "Could not move %s" msgstr "无法移动 %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "文件名不能为空。" @@ -40,18 +40,18 @@ msgstr "文件名不能为空。" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,131 +177,123 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消 msgid "URL cannot be empty" msgstr "URL不能为空" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "主目录里 'Shared' 是系统预留目录名" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "不能创建文件" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "不能创建文件夹" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "获取URL出错" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "分享" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "重命名" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "移动文件错误" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "错误" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "等待" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "不能重命名文件" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "删除文件出错。" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "上传 %n 个文件" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "您的存储空间已满,文件将无法更新或同步!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的存储空间即将用完 ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "加密应用被启用了,但是你的加密密钥没有初始化,请重新登出登录系统一次。" -#: js/files.js:138 +#: js/files.js:136 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 "无效的私有密钥。请到您的个人配置里去更新私有密钥,来恢复对加密文件的访问。" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "加密是被禁用的,但是您的文件还是被加密了。请到您的个人配置里设置文件加密选项。" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "修改日期" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s 不能被重命名" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 0b53e0ef25..47aa49ad55 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -22,6 +22,14 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -289,99 +297,104 @@ msgstr "请认真检查<a href='%s'>安装指南</a>." msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 38db6ba96f..370c523969 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -54,15 +54,15 @@ msgstr "邮件已发送" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -530,91 +530,111 @@ msgstr "允许邮件通知" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "安全" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "服务器地址" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "端口" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "凭证" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "日志" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "更多" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "更少" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "版本" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 2e16110784..e2e1bffb7f 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "分享" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "錯誤" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 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 "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 298b755919..19ef614f59 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 7021c16fca..2f76448264 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "郵件已傳" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "連接埠" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index db4cd8f43d..96984e4187 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+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" @@ -136,55 +136,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "設定" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "今天" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "昨天" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "上個月" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "去年" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "幾年前" @@ -261,23 +261,23 @@ msgstr "載入檔案存在樣板出錯" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "非常弱的密碼" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "弱的密碼" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "普通的密碼" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "好的密碼" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "很強的密碼" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 93e6dfb09e..507c1ce75d 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "無法移動 %s ,同名的檔案已經存在" msgid "Could not move %s" msgstr "無法移動 %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "檔名不能為空" @@ -38,18 +38,18 @@ msgstr "檔名不能為空" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,131 +175,123 @@ msgstr "檔案上傳中,離開此頁面將會取消上傳。" msgid "URL cannot be empty" msgstr "URL 不能留空" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "在家目錄中不能使用「共享」作為檔名" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "無法建立檔案" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "無法建立資料夾" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "分享" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "重新命名" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "移動檔案失敗" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "錯誤" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "等候中" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "無法重新命名" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個檔案正在上傳" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "您的儲存空間已滿,沒有辦法再更新或是同步檔案!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "檔案加密已啓用,但是您的金鑰尚未初始化,請重新登入一次" -#: js/files.js:138 +#: js/files.js:136 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 "無效的檔案加密私鑰,請在個人設定中更新您的私鑰密語以存取加密的檔案。" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "修改時間" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "無法重新命名 %s" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 7ce86652c8..06803008ac 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# akong <akong@aspa.idv.tw>, 2013 +# akong <akong@aspa.idv.tw>, 2013-2014 # pellaeon <nfsmwlin@gmail.com>, 2013 # Flymok <transifex@flymok.net>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:31+0000\n" +"Last-Translator: akong <akong@aspa.idv.tw>\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" @@ -100,11 +100,11 @@ msgstr "以下的使用者無法設定加密:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "加密初始已啟用...這個需要一些時間。請稍等。" #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "加密初始執行中...請晚點再試。" #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -114,91 +114,91 @@ msgstr "直接到您的" msgid "personal settings" msgstr "個人設定" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "加密" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "啟用還原金鑰 (因忘記密碼仍允許還原使用者檔案):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "還原金鑰密碼" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "再輸入還原金鑰密碼一次" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "已啓用" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "已停用" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "變更還原金鑰密碼:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "舊的還原金鑰密碼" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "新的還原金鑰密碼" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "再輸入新的還原金鑰密碼一次" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "變更密碼" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "您的私人金鑰密碼不符合您的登入密碼:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "設定您的舊私人金鑰密碼到您現在的登入密碼。" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "如果您忘記舊密碼,可以請求管理員協助取回檔案。" -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "舊登入密碼" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "目前的登入密碼" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "更新私人金鑰密碼" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "啟用密碼還原:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "啟用這個選項將會允許您因忘記密碼但需要存取您的加密檔案" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "檔案還原設定已更新" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "無法更新檔案還原設定" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 10fa76b3d6..415b7d0fdf 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+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" @@ -40,31 +40,31 @@ msgstr "設定 Google Drive 儲存時發生錯誤" #: js/settings.js:318 js/settings.js:325 msgid "Saved" -msgstr "" +msgstr "已儲存" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 8823dee83c..5d7d0ffea2 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "請參考<a href='%s'>安裝指南</a>。" msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index d67101ebc5..4b9019fdf6 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# akong <akong@aspa.idv.tw>, 2014 # pellaeon <nfsmwlin@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,24 +22,24 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "無效的提供值 %s" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "已儲存" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "測試郵件設定" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "假如您收到這個郵件,此設定看起來是正確的。" #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "當寄出郵件時發生問題。請重新檢視您的設定。" #: admin/controller.php:99 msgid "Email sent" @@ -46,19 +47,19 @@ msgstr "Email 已寄出" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "在準備要寄出測試郵件時您需要設定您的使用者郵件。" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" -msgstr "" +msgstr "寄送模式" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" -msgstr "" +msgstr "驗證方式" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -71,11 +72,11 @@ msgstr "認證錯誤" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "您的全名已變更。" #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "無法變更全名" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -87,17 +88,17 @@ msgstr "群組增加失敗" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "檔案解密成功" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "無法解密您的檔案,請檢查您的 owncloud.log 或是詢問您的管理者" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "無法解密您的檔案,確認您的密碼並再重試一次" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -172,7 +173,7 @@ msgstr "無法修改密碼" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "寄送中..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -180,7 +181,7 @@ msgstr "用戶說明文件" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "管理者文件" #: js/apps.js:67 msgid "Update to {appversion}" @@ -232,23 +233,23 @@ msgstr "選擇大頭貼" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "非常弱的密碼" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "弱的密碼" #: js/personal.js:276 msgid "So-so password" -msgstr "" +msgstr "普通的密碼" #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "好的密碼" #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "很強的密碼" #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." @@ -305,23 +306,23 @@ msgstr "__language_name__" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "全部(嚴重問題,錯誤,警告,資訊,除錯)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "資訊,警告,錯誤和嚴重問題" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "警告,錯誤和嚴重問題" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "錯誤和嚴重問題" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "只有嚴重問題" #: templates/admin.php:16 templates/admin.php:23 msgid "None" @@ -333,19 +334,19 @@ msgstr "登入" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "文字" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -356,7 +357,7 @@ msgstr "安全性警告" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "您正透過未加密網頁存取 %s。我們強烈建議您設定您的主機必須使用加密網頁。" #: templates/admin.php:64 msgid "" @@ -394,14 +395,14 @@ msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模 #: templates/admin.php:104 msgid "Your PHP version is outdated" -msgstr "" +msgstr "您的 PHP 版本已過期" #: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "您的 PHP 版本已過期。我們強烈建議更新到 5.3.8 或更新的版本,因為舊的版本已知會毀損。這個可能會在安裝後無法使用。" #: templates/admin.php:118 msgid "Locale not working" @@ -409,20 +410,20 @@ msgstr "語系無法運作" #: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "系統語系無法設定只支援 UTF-8" #: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "這個意思是指在檔名中使用一些字元可能會有問題" #: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "我們強烈建議在您的系統上安裝必要的套件來支援以下的語系: %s" #: templates/admin.php:143 msgid "Internet connection not working" @@ -444,18 +445,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "最後的排程已執行於 %s。" #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "最後的排程已執行於 %s。現在過了好幾個小時,看起來是有錯誤。" #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "排程沒有執行!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" @@ -522,93 +523,113 @@ msgstr "允許郵件通知" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "允許使用者寄送有關分享檔案的郵件通知" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "安全性" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" -msgstr "" +msgstr "郵件伺服器" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." -msgstr "" +msgstr "這是使用於寄送通知。" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" -msgstr "" +msgstr "寄件地址" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" -msgstr "" +msgstr "必須驗證" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "伺服器位址" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "連接埠" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "認證" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" -msgstr "" +msgstr "SMTP 帳號" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" -msgstr "" +msgstr "SMTP 密碼" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" -msgstr "" +msgstr "測試郵件設定" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" -msgstr "" +msgstr "寄送郵件" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "紀錄" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "更多" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "更少" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "版本" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -632,7 +653,7 @@ msgstr "選擇一個應用程式" #: templates/apps.php:43 msgid "Documentation:" -msgstr "" +msgstr "文件:" #: templates/apps.php:49 msgid "See application page at apps.owncloud.com" @@ -640,7 +661,7 @@ msgstr "查看應用程式頁面於 apps.owncloud.com" #: templates/apps.php:51 msgid "See application website" -msgstr "" +msgstr "檢視應用程式網站" #: templates/apps.php:53 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" @@ -705,7 +726,7 @@ msgstr "變更密碼" #: templates/personal.php:61 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "全名" #: templates/personal.php:76 msgid "Email" @@ -719,7 +740,7 @@ msgstr "您的電子郵件信箱" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "填入電子郵件地址來啟用忘記密碼和接收通知的功能" #: templates/personal.php:89 msgid "Profile picture" @@ -743,7 +764,7 @@ msgstr "可以使用 png 或 jpg 格式,最好是方形的,但是您之後 #: templates/personal.php:100 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "您的圖像是由您原來的帳號所提供的。" #: templates/personal.php:104 msgid "Cancel" @@ -774,7 +795,7 @@ msgstr "使用這個地址<a href=\"%s\" target=\"_blank\">來透過 WebDAV 存 #: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "加密的軟體不能長時間啟用,請解密所有您的檔案" #: templates/personal.php:157 msgid "Log-in password" @@ -808,7 +829,7 @@ msgstr "預設儲存區" #: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "請輸入空間配額(例如: \"512 MB\"或是 \"12 GB\")" #: templates/users.php:46 templates/users.php:146 msgid "Unlimited" @@ -828,7 +849,7 @@ msgstr "儲存區" #: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "變更全名" #: templates/users.php:110 msgid "set new password" diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index d6bf5771e8..566694d1fd 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Settings" => "Instellings", "Users" => "Gebruikers", "Admin" => "Admin", +"Unknown filetype" => "Onbekende leertipe", "web services under your control" => "webdienste onder jou beheer", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 8348f7ef0d..671251884a 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -56,6 +56,12 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité.", "Please double check the <a href='%s'>installation guides</a>." => "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>.", "%s shared »%s« with you" => "%s s vámi sdílí »%s«", +"Sharing %s failed, because the user %s is the item owner" => "Sdílení položky %s selhalo, protože uživatel %s je jejím vlastníkem", +"Sharing %s failed, because the user %s does not exist" => "Sdílení položky %s selhalo, protože uživatel %s neexistuje", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Sdílení položky %s selhalo, protože uživatel %s není členem žádné skupiny společné s uživatelem %s", +"Sharing %s failed, because this item is already shared with %s" => "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílená", +"Sharing %s failed, because the group %s does not exist" => "Sdílení položky %s selhalo, protože skupina %s neexistuje", +"Sharing %s failed, because %s is not a member of the group %s" => "Sdílení položky %s selhalo, protože uživatel %s není členem skupiny %s", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"", "seconds ago" => "před pár sekundami", "_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 297cc57bde..9a334a6ccc 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>.", "%s shared »%s« with you" => "%s teilte »%s« mit Dir", +"Sharing %s failed, because the user %s is the item owner" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s Besitzer des Objektes ist", +"Sharing %s failed, because the user %s does not exist" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s nicht existiert", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s kein Gruppenmitglied einer der Gruppen von %s ist", +"Sharing %s failed, because this item is already shared with %s" => "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", +"Sharing %s failed, because the group %s does not exist" => "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert", +"Sharing %s failed, because %s is not a member of the group %s" => "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist", +"Sharing %s failed, because sharing with links is not allowed" => "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist", +"Share type %s is not valid for %s" => "Freigabetyp %s ist nicht gültig für %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten", +"Setting permissions for %s failed, because the item was not found" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden", +"Sharing backend %s not found" => "Freigabe-Backend %s nicht gefunden", +"Sharing backend for %s not found" => "Freigabe-Backend für %s nicht gefunden", +"Sharing %s failed, because the user %s is the original sharer" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten", +"Sharing %s failed, because resharing is not allowed" => "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte", +"Sharing %s failed, because the file could not be found in the file cache" => "Freigabe von %s fehlgeschlagen, da die Datei im Datei-Cache nicht gefunden werden konnte", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden.", "seconds ago" => "Gerade eben", "_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index d0a4a9b1c6..ae71118979 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>.", "%s shared »%s« with you" => "%s hat »%s« mit Ihnen geteilt", +"Sharing %s failed, because the user %s is the item owner" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s Besitzer des Objektes ist", +"Sharing %s failed, because the user %s does not exist" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s nicht existiert", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s kein Gruppenmitglied einer der Gruppen von %s ist", +"Sharing %s failed, because this item is already shared with %s" => "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", +"Sharing %s failed, because the group %s does not exist" => "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert", +"Sharing %s failed, because %s is not a member of the group %s" => "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist", +"Sharing %s failed, because sharing with links is not allowed" => "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist", +"Share type %s is not valid for %s" => "Freigabetyp %s ist nicht gültig für %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten", +"Setting permissions for %s failed, because the item was not found" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden", +"Sharing backend %s not found" => "Freigabe-Backend %s nicht gefunden", +"Sharing backend for %s not found" => "Freigabe-Backend für %s nicht gefunden", +"Sharing %s failed, because the user %s is the original sharer" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten", +"Sharing %s failed, because resharing is not allowed" => "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte", +"Sharing %s failed, because the file could not be found in the file cache" => "Freigabe von %s fehlgeschlagen, da die Datei im Datei-Cache nicht gefunden werden konnte", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden.", "seconds ago" => "Gerade eben", "_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index e1c49392bd..5b519c75df 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken.", "Please double check the <a href='%s'>installation guides</a>." => "Please double check the <a href='%s'>installation guides</a>.", "%s shared »%s« with you" => "%s shared \"%s\" with you", +"Sharing %s failed, because the user %s is the item owner" => "Sharing %s failed, because the user %s is the item owner", +"Sharing %s failed, because the user %s does not exist" => "Sharing %s failed, because the user %s does not exist", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of", +"Sharing %s failed, because this item is already shared with %s" => "Sharing %s failed, because this item is already shared with %s", +"Sharing %s failed, because the group %s does not exist" => "Sharing %s failed, because the group %s does not exist", +"Sharing %s failed, because %s is not a member of the group %s" => "Sharing %s failed, because %s is not a member of the group %s", +"Sharing %s failed, because sharing with links is not allowed" => "Sharing %s failed, because sharing with links is not allowed", +"Share type %s is not valid for %s" => "Share type %s is not valid for %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Setting permissions for %s failed, because the permissions exceed permissions granted to %s", +"Setting permissions for %s failed, because the item was not found" => "Setting permissions for %s failed, because the item was not found", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Sharing backend %s must implement the interface OCP\\Share_Backend", +"Sharing backend %s not found" => "Sharing backend %s not found", +"Sharing backend for %s not found" => "Sharing backend for %s not found", +"Sharing %s failed, because the user %s is the original sharer" => "Sharing %s failed, because the user %s is the original sharer", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Sharing %s failed, because the permissions exceed permissions granted to %s", +"Sharing %s failed, because resharing is not allowed" => "Sharing %s failed, because resharing is not allowed", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Sharing %s failed, because the sharing backend for %s could not find its source", +"Sharing %s failed, because the file could not be found in the file cache" => "Sharing %s failed, because the file could not be found in the file cache", "Could not find category \"%s\"" => "Could not find category \"%s\"", "seconds ago" => "seconds ago", "_%n minute ago_::_%n minutes ago_" => array("%n minute ago","%n minutes ago"), diff --git a/lib/l10n/es.php b/lib/l10n/es.php index c01239cca7..351d469225 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -56,6 +56,20 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.", "%s shared »%s« with you" => "%s ha compatido »%s« contigo", +"Sharing %s failed, because the user %s is the item owner" => "Compartiendo %s ha fallado, ya que el usuario %s es el dueño del elemento", +"Sharing %s failed, because the user %s does not exist" => "Compartiendo %s ha fallado, ya que el usuario %s no existe", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Compartiendo %s ha fallado, ya que el usuario %s no es miembro de algún grupo que %s es miembro", +"Sharing %s failed, because this item is already shared with %s" => "Compartiendo %s ha fallado, ya que este elemento ya está compartido con %s", +"Sharing %s failed, because the group %s does not exist" => "Compartiendo %s ha fallado, ya que el grupo %s no existe", +"Sharing %s failed, because %s is not a member of the group %s" => "Compartiendo %s ha fallado, ya que %s no es miembro del grupo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Compartiendo %s ha fallado, ya que compartir con enlaces no está permitido", +"Share type %s is not valid for %s" => "Compartir tipo %s no es válido para %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Configuración de permisos para %s ha fallado, ya que los permisos superan los permisos dados a %s", +"Setting permissions for %s failed, because the item was not found" => "Configuración de permisos para %s ha fallado, ya que el elemento no fue encontrado", +"Sharing %s failed, because the user %s is the original sharer" => "Compartiendo %s ha fallado, ya que el usuario %s es el compartidor original", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Compartiendo %s ha fallado, ya que los permisos superan los permisos otorgados a %s", +"Sharing %s failed, because resharing is not allowed" => "Compartiendo %s ha fallado, ya que volver a compartir no está permitido", +"Sharing %s failed, because the file could not be found in the file cache" => "Compartiendo %s ha fallado, ya que el archivo no pudo ser encontrado en el cache de archivo", "Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"", "seconds ago" => "hace segundos", "_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index f0db728b55..082e1222d7 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -56,6 +56,15 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", "Please double check the <a href='%s'>installation guides</a>." => "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.", "%s shared »%s« with you" => "%s jagas sinuga »%s«", +"Share type %s is not valid for %s" => "Jagamise tüüp %s ei ole õige %s jaoks", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese", +"Sharing backend %s not found" => "Jagamise tagarakendit %s ei leitud", +"Sharing backend for %s not found" => "Jagamise tagarakendit %s jaoks ei leitud", +"Sharing %s failed, because the user %s is the original sharer" => "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "%s jagamine ebaõnnestus, kuna jagamise õigused ületavad %s jaoks määratud õigusi", +"Sharing %s failed, because resharing is not allowed" => "%s jagamine ebaõnnestus, kuna edasijagamine pole lubatud", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "%s jagamine ebaõnnestus, kuna jagamise tagarakend ei suutnud leida %s jaoks lähteallikat", +"Sharing %s failed, because the file could not be found in the file cache" => "%s jagamine ebaõnnestus, kuna faili ei suudetud leida failide puhvrist", "Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"", "seconds ago" => "sekundit tagasi", "_%n minute ago_::_%n minutes ago_" => array("","%n minutit tagasi"), diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 13e97e1b67..8396cf1438 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -23,6 +23,7 @@ $TRANSLATIONS = array( "App does not provide an info.xml file" => "Sovellus ei sisällä info.xml-tiedostoa", "App can't be installed because of not allowed code in the App" => "Sovellusta ei voi asentaa, koska sovellus sisältää kiellettyä koodia", "App can't be installed because it is not compatible with this version of ownCloud" => "Sovellusta ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Sovellusta ei voi asentaa, koska info.xml/version ilmoittaa versioksi eri arvon kuin sovelluskauppa", "App directory already exists" => "Sovelluskansio on jo olemassa", "Can't create app folder. Please fix permissions. %s" => "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s", "Application is not enabled" => "Sovellusta ei ole otettu käyttöön", @@ -38,17 +39,30 @@ $TRANSLATIONS = array( "MS SQL username and/or password not valid: %s" => "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s", "MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB-käyttäjätunnus ja/tai salasana on virheellinen", "DB Error: \"%s\"" => "Tietokantavirhe: \"%s\"", +"Offending command was: \"%s\"" => "Loukkaava komento oli: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB-käyttäjä '%s'@'localhost' on jo olemassa.", "Drop this user from MySQL/MariaDB" => "Pudota tämä käyttäjä MySQL/MariaDB:stä", "MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB-käyttäjä '%s'@'%%' on jo olemassa", "Drop this user from MySQL/MariaDB." => "Pudota tämä käyttäjä MySQL/MariaDB:stä.", "Oracle connection could not be established" => "Oracle-yhteyttä ei voitu muodostaa", "Oracle username and/or password not valid" => "Oraclen käyttäjätunnus ja/tai salasana on väärin", +"Offending command was: \"%s\", name: %s, password: %s" => "Loukkaava komento oli: \"%s\", nimi: %s, salasana: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin", "Set an admin username." => "Aseta ylläpitäjän käyttäjätunnus.", "Set an admin password." => "Aseta ylläpitäjän salasana.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki.", "Please double check the <a href='%s'>installation guides</a>." => "Lue tarkasti <a href='%s'>asennusohjeet</a>.", "%s shared »%s« with you" => "%s jakoi kohteen »%s« kanssasi", +"Sharing %s failed, because the user %s is the item owner" => "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on kohteen omistaja", +"Sharing %s failed, because the user %s does not exist" => "Kohteen %s jakaminen epäonnistui, koska käyttäjää %s ei ole olemassa", +"Sharing %s failed, because this item is already shared with %s" => "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjän %s kanssa", +"Sharing %s failed, because the group %s does not exist" => "Kohteen %s jakaminen epäonnistui, koska ryhmää %s ei ole olemassa", +"Sharing %s failed, because %s is not a member of the group %s" => "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s ei ole ryhmän %s jäsen", +"Sharing %s failed, because sharing with links is not allowed" => "Kohteen %s jakaminen epäonnistui, koska jakaminen linkkejä käyttäen ei ole sallittu", +"Setting permissions for %s failed, because the item was not found" => "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löytynyt", +"Sharing %s failed, because the user %s is the original sharer" => "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on alkuperäinen jakaja", +"Sharing %s failed, because resharing is not allowed" => "Kohteen %s jakaminen epäonnistui, koska jakaminen uudelleen ei ole sallittu", +"Sharing %s failed, because the file could not be found in the file cache" => "Kohteen %s jakaminen epäonnistui, koska tiedostoa ei löytynyt tiedostovälimuistista", "Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt", "seconds ago" => "sekuntia sitten", "_%n minute ago_::_%n minutes ago_" => array("%n minuutti sitten","%n minuuttia sitten"), diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index b13970c610..f4e916aa9c 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -56,6 +56,20 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", "Please double check the <a href='%s'>installation guides</a>." => "Veuillez vous référer au <a href='%s'>guide d'installation</a>.", "%s shared »%s« with you" => "%s partagé »%s« avec vous", +"Sharing %s failed, because the user %s is the item owner" => "Le partage de %s a échoué car l'utilisateur %s est le propriétaire de l'objet", +"Sharing %s failed, because the user %s does not exist" => "Le partage de %s a échoué car l'utilisateur %s n'existe pas", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Le partage de %s a échoué car l'utilisateur %s n'est membre d'aucun groupe auquel %s appartient", +"Sharing %s failed, because this item is already shared with %s" => "Le partage de %s a échoué car cet objet est déjà partagé avec %s", +"Sharing %s failed, because the group %s does not exist" => "Le partage de %s a échoué car le groupe %s n'existe pas", +"Sharing %s failed, because %s is not a member of the group %s" => "Le partage de %s a échoué car %s n'est pas membre du groupe %s", +"Sharing %s failed, because sharing with links is not allowed" => "Le partage de %s a échoué car un partage de lien n'est pas permis", +"Share type %s is not valid for %s" => "Le type de partage %s n'est pas valide pour %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Le réglage des permissions pour %s a échoué car les permissions dépassent celle accordée à %s", +"Setting permissions for %s failed, because the item was not found" => "Le réglage des permissions pour %s a échoué car l'objet n'a pas été trouvé", +"Sharing %s failed, because the user %s is the original sharer" => "Le partage de %s a échoué car l'utilisateur %s est déjà l'utilisateur à l'origine du partage.", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Le partage de %s a échoué car les permissions dépassent les permissions accordées à %s", +"Sharing %s failed, because resharing is not allowed" => "Le partage de %s a échoué car le repartage n'est pas autorisé", +"Sharing %s failed, because the file could not be found in the file cache" => "Le partage de %s a échoué car le fichier n'a pas été trouvé dans les fichiers mis en cache.", "Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"", "seconds ago" => "il y a quelques secondes", "_%n minute ago_::_%n minutes ago_" => array("","il y a %n minutes"), diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 2a62b41e22..b61df49acc 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar.", "Please double check the <a href='%s'>installation guides</a>." => "Volva comprobar as <a href='%s'>guías de instalación</a>", "%s shared »%s« with you" => "%s compartiu «%s» con vostede", +"Sharing %s failed, because the user %s is the item owner" => "Fallou a compartición de %s, xa que o propietario do elemento é o usuario %s", +"Sharing %s failed, because the user %s does not exist" => "Fallou a compartición de %s, xa que o usuario %s non existe", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Fallou a compartición de %s, xa que o usuario %s non é membro de ningún grupo que sexa membro de %s", +"Sharing %s failed, because this item is already shared with %s" => "Fallou a compartición de %s, xa que este elemento xa está compartido con %s", +"Sharing %s failed, because the group %s does not exist" => "Fallou a compartición de %s, xa que o grupo %s non existe", +"Sharing %s failed, because %s is not a member of the group %s" => "Fallou a compartición de %s, xa que %s non é membro do grupo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Fallou a compartición de %s, xa que non está permitido compartir con ligazóns", +"Share type %s is not valid for %s" => "Non se admite a compartición do tipo %s para %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Non é posíbel estabelecer permisos para %s, xa que os permisos superan os permisos concedidos a %s", +"Setting permissions for %s failed, because the item was not found" => "Non é posíbel estabelecer permisos para %s, xa que non se atopa o elemento", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "A infraestrutura de compartición %s ten que implementar a interface OCP\\Share_Backend", +"Sharing backend %s not found" => "Non se atopou a infraestrutura de compartición %s", +"Sharing backend for %s not found" => "Non se atopou a infraestrutura de compartición para %s", +"Sharing %s failed, because the user %s is the original sharer" => "Fallou a compartición de %s, xa que a compartición orixinal é do usuario %s", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Fallou a compartición de %s, xa que os permisos superan os permisos concedidos a %s", +"Sharing %s failed, because resharing is not allowed" => "Fallou a compartición de %s, xa que non está permitido repetir a compartción", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Fallou a compartición de %s, xa que a infraestrutura de compartición para %s non foi quen de atopar a orixe", +"Sharing %s failed, because the file could not be found in the file cache" => "Fallou a compartición de %s, xa que non foi posíbel atopar o ficheiro na caché de ficheiros", "Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","hai %n minutos"), diff --git a/lib/l10n/ia.php b/lib/l10n/ia.php index 34f43bc424..1fb600d76b 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -5,12 +5,20 @@ $TRANSLATIONS = array( "Settings" => "Configurationes", "Users" => "Usatores", "Admin" => "Administration", +"Unknown filetype" => "Typo de file incognite", +"Invalid image" => "Imagine invalide", "web services under your control" => "servicios web sub tu controlo", "Files" => "Files", "Text" => "Texto", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"seconds ago" => "secundas passate", +"_%n minute ago_::_%n minutes ago_" => array("","%n minutas passate"), +"_%n hour ago_::_%n hours ago_" => array("","%n horas passate"), +"today" => "hodie", +"yesterday" => "heri", "_%n day go_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("","") +"last month" => "ultime mense", +"_%n month ago_::_%n months ago_" => array("",""), +"last year" => "ultime anno", +"years ago" => "annos passate" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/it.php b/lib/l10n/it.php index b76b5060a4..e565b01fdf 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -56,6 +56,22 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the <a href='%s'>installation guides</a>." => "Leggi attentamente le <a href='%s'>guide d'installazione</a>.", "%s shared »%s« with you" => "%s ha condiviso «%s» con te", +"Sharing %s failed, because the user %s is the item owner" => "Condivisione di %s non riuscita, poiché l'utente %s è il proprietario dell'oggetto", +"Sharing %s failed, because the user %s does not exist" => "Condivisione di %s non riuscita, poiché l'utente %s non esiste", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Condivisione di %s non riuscita, poiché l'utente %s non appartiene ad alcun gruppo di cui %s è membro", +"Sharing %s failed, because this item is already shared with %s" => "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s", +"Sharing %s failed, because the group %s does not exist" => "Condivisione di %s non riuscita, poiché il gruppo %s non esiste", +"Sharing %s failed, because %s is not a member of the group %s" => "Condivisione di %s non riuscita, poiché %s non appartiene al gruppo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Condivisione di %s non riuscita, poiché i link non sono ammessi", +"Share type %s is not valid for %s" => "Il tipo di condivisione %s non è valido per %s", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Il motore di condivisione %s deve implementare l'interfaccia OCP\\Share_Backend", +"Sharing backend %s not found" => "Motore di condivisione %s non trovato", +"Sharing backend for %s not found" => "Motore di condivisione di %s non trovato", +"Sharing %s failed, because the user %s is the original sharer" => "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso precedentemente", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Condivisione di %s non riuscita, poiché i permessi sono superiori a quelli rilasciati a %s", +"Sharing %s failed, because resharing is not allowed" => "Condivisione di %s non riuscita, poiché la ri-condivisione non è ammessa", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua origine", +"Sharing %s failed, because the file could not be found in the file cache" => "Condivisione di %s non riuscita, poiché il file non risiede nella cache", "Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"", "seconds ago" => "secondi fa", "_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index f786e1832a..66af696900 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony.", "Please double check the <a href='%s'>installation guides</a>." => "Sprawdź ponownie <a href='%s'>przewodniki instalacji</a>.", "%s shared »%s« with you" => "%s Współdzielone »%s« z tobą", +"Sharing %s failed, because the user %s is the item owner" => "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest właścicielem elementu", +"Sharing %s failed, because the user %s does not exist" => "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s nie istnieje", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s nie jest członkiem żadnej grupy której członkiem jest %s", +"Sharing %s failed, because this item is already shared with %s" => "Współdzielenie %s nie powiodło się, ponieważ element jest już współdzielony z %s", +"Sharing %s failed, because the group %s does not exist" => "Współdzielenie %s nie powiodło się, ponieważ grupa %s nie istnieje", +"Sharing %s failed, because %s is not a member of the group %s" => "Współdzielenie %s nie powiodło się, ponieważ %s nie jest członkiem grupy %s", +"Sharing %s failed, because sharing with links is not allowed" => "Współdzielenie %s nie powiodło się, ponieważ współdzielenie z linkami nie jest dozwolone", +"Share type %s is not valid for %s" => "Typ udziału %s nie jest właściwy dla %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Ustawienie uprawnień dla %s nie powiodło się, ponieważ uprawnienia wykraczają poza przydzielone %s", +"Setting permissions for %s failed, because the item was not found" => "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie został znaleziony", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Zaplecze do współdzielenia %s musi implementować interfejs OCP\\Share_Backend", +"Sharing backend %s not found" => "Zaplecze %s do współdzielenia nie zostało znalezione", +"Sharing backend for %s not found" => "Zaplecze do współdzielenia %s nie zostało znalezione", +"Sharing %s failed, because the user %s is the original sharer" => "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest udostępniającym", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Współdzielenie %s nie powiodło się, ponieważ uprawnienia przekraczają te udzielone %s", +"Sharing %s failed, because resharing is not allowed" => "Współdzielenie %s nie powiodło się, ponieważ ponowne współdzielenie nie jest dozwolone", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Współdzielenie %s nie powiodło się, ponieważ zaplecze współdzielenia dla %s nie mogło znaleźć jego źródła", +"Sharing %s failed, because the file could not be found in the file cache" => "Współdzielenie %s nie powiodło się, ponieważ plik nie może zostać odnaleziony w buforze plików", "Could not find category \"%s\"" => "Nie można odnaleźć kategorii \"%s\"", "seconds ago" => "sekund temu", "_%n minute ago_::_%n minutes ago_" => array("%n minute temu","%n minut temu","%n minut temu"), diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 3cc02f7652..d86f7757ae 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, confira os <a href='%s'>guias de instalação</a>.", "%s shared »%s« with you" => "%s compartilhou »%s« com você", +"Sharing %s failed, because the user %s is the item owner" => "Compartilhamento %s falhou, porque o usuário %s é o proprietário do item", +"Sharing %s failed, because the user %s does not exist" => "Compartilhamento %s falhou, porque o usuário %s não existe", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Compartilhamento %s falhou, porque o usuário %s não é membro de nenhum grupo que o usuário %s pertença", +"Sharing %s failed, because this item is already shared with %s" => "Compartilhamento %s falhou, porque este ítem já está compartilhado com %s", +"Sharing %s failed, because the group %s does not exist" => "Compartilhamento %s falhou, porque o grupo %s não existe", +"Sharing %s failed, because %s is not a member of the group %s" => "Compartilhamento %s falhou, porque %s não é membro do grupo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Compartilhamento %s falhou, porque compartilhamento com links não é permitido", +"Share type %s is not valid for %s" => "Tipo de compartilhamento %s não é válido para %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s", +"Setting permissions for %s failed, because the item was not found" => "Definir permissões para %s falhou, porque o item não foi encontrado", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Compartilhando backend %s deve implementar a interface OCP\\Share_Backend", +"Sharing backend %s not found" => "Compartilhamento backend %s não encontrado", +"Sharing backend for %s not found" => "Compartilhamento backend para %s não encontrado", +"Sharing %s failed, because the user %s is the original sharer" => "Compartilhando %s falhou, porque o usuário %s é o compartilhador original", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Compartilhamento %s falhou, porque as permissões excedem as permissões concedidas a %s", +"Sharing %s failed, because resharing is not allowed" => "Compartilhamento %s falhou, porque recompartilhamentos não são permitidos", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Compartilhamento %s falhou, porque a infra-estrutura de compartilhamento para %s não conseguiu encontrar a sua fonte", +"Sharing %s failed, because the file could not be found in the file cache" => "Compartilhamento %s falhou, porque o arquivo não pôde ser encontrado no cache de arquivos", "Could not find category \"%s\"" => "Impossível localizar categoria \"%s\"", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("","ha %n minutos"), diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 86172b5ab7..eeaa0ddf96 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -56,6 +56,16 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", "Please double check the <a href='%s'>installation guides</a>." => "Preverite <a href='%s'>navodila namestitve</a>.", "%s shared »%s« with you" => "%s je omogočil souporabo »%s«", +"Sharing %s failed, because the user %s is the item owner" => "Nastavljanje souporabe %s je spodletelo, ker je uporabnik %s lastnik predmeta.", +"Sharing %s failed, because the user %s does not exist" => "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ne obstaja.", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član nobene skupine, v kateri je tudi uporabnik %s.", +"Sharing %s failed, because this item is already shared with %s" => "Nastavljanje souporabe %s je spodletela, ker je ima uporabnik %s predmet že v souporabi.", +"Sharing %s failed, because the group %s does not exist" => "Nastavljanje souporabe %s je spodletelo, ker je skupina %s ne obstaja.", +"Sharing %s failed, because %s is not a member of the group %s" => "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član skupine %s.", +"Sharing %s failed, because sharing with links is not allowed" => "Nastavljanje souporabe %s je spodletelo, ker souporaba preko povezave ni dovoljena.", +"Share type %s is not valid for %s" => "Vrsta souporabe %s za %s ni veljavna.", +"Sharing backend %s not found" => "Ozadnjega programa %s za souporabo ni mogoče najti", +"Sharing backend for %s not found" => "Ozadnjega programa za souporabo za %s ni mogoče najti", "Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti.", "seconds ago" => "pred nekaj sekundami", "_%n minute ago_::_%n minutes ago_" => array("pred %n minuto","pred %n minutama","pred %n minutami","pred %n minutami"), diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 70ca0bed38..ba63531ad7 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", "Please double check the <a href='%s'>installation guides</a>." => "Var god kontrollera <a href='%s'>installationsguiden</a>.", "%s shared »%s« with you" => "%s delade »%s« med dig", +"Sharing %s failed, because the user %s is the item owner" => "Delning %s misslyckades därför att användaren %s är den som äger objektet", +"Sharing %s failed, because the user %s does not exist" => "Delning %s misslyckades därför att användaren %s inte existerar", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Delning %s misslyckades därför att användaren %s inte är medlem i någon utav de grupper som %s är medlem i", +"Sharing %s failed, because this item is already shared with %s" => "Delning %s misslyckades därför att objektet redan är delat med %s", +"Sharing %s failed, because the group %s does not exist" => "Delning %s misslyckades därför att gruppen %s inte existerar", +"Sharing %s failed, because %s is not a member of the group %s" => "Delning %s misslyckades därför att %s inte ingår i gruppen %s", +"Sharing %s failed, because sharing with links is not allowed" => "Delning %s misslyckades därför att delning utav länkar inte är tillåtet", +"Share type %s is not valid for %s" => "Delningstyp %s är inte giltig för %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Misslyckades att sätta rättigheter för %s därför att rättigheterna överskrider de som är tillåtna för %s", +"Setting permissions for %s failed, because the item was not found" => "Att sätta rättigheterna för %s misslyckades därför att objektet inte hittades", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Delningsgränssnittet %s måste implementera gränssnittet OCP\\Share_Backend", +"Sharing backend %s not found" => "Delningsgränssnittet %s hittades inte", +"Sharing backend for %s not found" => "Delningsgränssnittet för %s hittades inte", +"Sharing %s failed, because the user %s is the original sharer" => "Delning %s misslyckades därför att användaren %s är den som delade objektet först", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Delning %s misslyckades därför att rättigheterna överskrider de rättigheter som är tillåtna för %s", +"Sharing %s failed, because resharing is not allowed" => "Delning %s misslyckades därför att vidaredelning inte är tillåten", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Delning %s misslyckades därför att delningsgränsnittet för %s inte kunde hitta sin källa", +"Sharing %s failed, because the file could not be found in the file cache" => "Delning %s misslyckades därför att filen inte kunde hittas i filcachen", "Could not find category \"%s\"" => "Kunde inte hitta kategorin \"%s\"", "seconds ago" => "sekunder sedan", "_%n minute ago_::_%n minutes ago_" => array("%n minut sedan","%n minuter sedan"), diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index c1275da2a7..7cc1b155bc 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the <a href='%s'>installation guides</a>." => "Lütfen <a href='%s'>kurulum kılavuzlarını</a> iki kez kontrol edin.", "%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", +"Sharing %s failed, because the user %s is the item owner" => "%s paylaşımı, %s öge sahibi olduğundan başarısız oldu", +"Sharing %s failed, because the user %s does not exist" => "%s paylaşımı, %s kullanıcısı mevcut olmadığından başarısız oldu", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "%s paylaşımı, %s kullanıcısının %s üyeliklerinden birine sahip olmadığından başarısız oldu", +"Sharing %s failed, because this item is already shared with %s" => "%s paylaşımı, %s ile zaten paylaşıldığından dolayı başarısız oldu", +"Sharing %s failed, because the group %s does not exist" => "%s paylaşımı, %s grubu mevcut olmadığından başarısız oldu", +"Sharing %s failed, because %s is not a member of the group %s" => "%s paylaşımı, %s kullanıcısı %s grup üyesi olmadığından başarısız oldu", +"Sharing %s failed, because sharing with links is not allowed" => "%s paylaşımı, bağlantılar ile paylaşım izin verilmediğinden başarısız oldu", +"Share type %s is not valid for %s" => "%s paylaşım türü %s için geçerli değil", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "%s için izinler, izinler %s için verilen izinleri aştığından dolayı ayarlanamadı", +"Setting permissions for %s failed, because the item was not found" => "%s için izinler öge bulunamadığından ayarlanamadı", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Paylaşma arka ucu %s OCP\\Share_Backend arayüzünü desteklemeli", +"Sharing backend %s not found" => "Paylaşım arka ucu %s bulunamadı", +"Sharing backend for %s not found" => "%s için paylaşım arka ucu bulunamadı", +"Sharing %s failed, because the user %s is the original sharer" => "%s paylaşımı, %s kullanıcısı özgün paylaşan kişi olduğundan başarısız oldu", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "%s paylaşımı, izinler %s için verilen izinleri aştığından dolayı başarısız oldu", +"Sharing %s failed, because resharing is not allowed" => "%s paylaşımı, tekrar paylaşımın izin verilmemesinden dolayı başarısız oldu", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "%s paylaşımı, %s için arka ucun kaynağını bulamamasından dolayı başarısız oldu", +"Sharing %s failed, because the file could not be found in the file cache" => "%s paylaşımı, dosyanın dosya önbelleğinde bulunamamasınndan dolayı başarısız oldu", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı", "seconds ago" => "saniyeler önce", "_%n minute ago_::_%n minutes ago_" => array("","%n dakika önce"), diff --git a/settings/l10n/af_ZA.php b/settings/l10n/af_ZA.php index b6c5025266..ff565e9cec 100644 --- a/settings/l10n/af_ZA.php +++ b/settings/l10n/af_ZA.php @@ -1,7 +1,9 @@ <?php $TRANSLATIONS = array( +"Security Warning" => "Sekuriteits waarskuwing", "Password" => "Wagwoord", "New password" => "Nuwe wagwoord", +"Cancel" => "Kanseleer", "Username" => "Gebruikersnaam" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 030106071c..0b2ca6fea3 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "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 correo electrónico", +"Allow users to send mail notification for shared files" => "Permitir a los usuarios enviar mensajes de notificación para ficheros 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 cifrada.", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 6e8bc71132..7d834e9170 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,13 +1,22 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "Parámetro suministrado invalido para %s", +"Saved" => "Guardado", +"test email settings" => "Configuración de correo de prueba.", +"If you received this email, the settings seem to be correct." => "Si recibió este correo, la configuración parece estar correcta.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Un problema ocurrió cuando se intentó enviar el correo electrónico. Por favor revea su configuración.", "Email sent" => "e-mail mandado", +"You need to set your user email before being able to send test emails." => "Necesita especificar el usuario de correo electrónico antes de poder enviar correos electrónicos de prueba.", +"Send mode" => "Modo de envio", "Encryption" => "Encriptación", +"Authentication method" => "Método de autenticación", "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", "Your full name has been changed." => "Su nombre completo ha sido cambiado.", "Unable to change full name" => "Imposible cambiar el nombre completo", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", +"Files decrypted successfully" => "Archivos des-encriptados correctamente", "Email saved" => "e-mail guardado", "Invalid email" => "El e-mail no es válido ", "Unable to delete group" => "No fue posible borrar el grupo", @@ -24,7 +33,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación administrativa incorrecta. Por favor, chequee la clave e intente de nuevo", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero las claves de encriptación fueron subidas exitosamente.", "Unable to change password" => "Imposible cambiar la contraseña", +"Sending..." => "Enviando...", "User Documentation" => "Documentación de Usuario", +"Admin Documentation" => "Documentación de Administrador.", "Update to {appversion}" => "Actualizar a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -37,6 +48,11 @@ $TRANSLATIONS = array( "Update" => "Actualizar", "Updated" => "Actualizado", "Select a profile picture" => "Seleccionar una imágen de perfil", +"Very weak password" => "Contraseña muy débil.", +"Weak password" => "Contraseña débil.", +"So-so password" => "Contraseña de nivel medio. ", +"Good password" => "Buena contraseña. ", +"Strong password" => "Contraseña fuerte.", "Decrypting files... Please wait, this can take some time." => "Desencriptando archivos... Por favor espere, esto puede tardar.", "deleted" => "borrado", "undo" => "deshacer", @@ -57,6 +73,10 @@ $TRANSLATIONS = array( "Fatal issues only" => "Notificaciones fatales solamente", "None" => "Ninguno", "Login" => "Ingresar", +"Plain" => "Plano", +"NT LAN Manager" => "Administrador NT LAN", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Advertencia de seguridad", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está accediendo %s vía HTTP. Se sugiere fuertemente que configure su servidor para requerir el uso de HTTPS en vez del otro.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos y tus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no funciona. Sugerimos fuertemente que configures tu servidor web de forma tal que el archivo de directorios no sea accesible o muevas el mismo fuera de la raíz de los documentos del servidor web.", @@ -89,13 +109,22 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Allow mail notification" => "Permitir notificaciones por correo", +"Allow users to send mail notification for shared files" => "Habilitar a los usuarios para enviar notificaciones por correo para archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL", +"Email Server" => "Servidor de correo electrónico", +"This is used for sending out notifications." => "Esto es usado para enviar notificaciones.", +"From address" => "Dirección remitente", +"Authentication required" => "Autentificación requerida", "Server address" => "Dirección del servidor", "Port" => "Puerto", "Credentials" => "Credenciales", +"SMTP Username" => "Nombre de usuario SMTP", +"SMTP Password" => "Contraseña SMTP", +"Test email settings" => "Configuracion de correo de prueba.", +"Send email" => "Enviar correo", "Log" => "Log", "Log level" => "Nivel de Log", "More" => "Más", @@ -105,7 +134,9 @@ $TRANSLATIONS = array( "Add your App" => "Añadí tu App", "More Apps" => "Más Apps", "Select an App" => "Elegí una App", +"Documentation:" => "Documentación:", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", +"See application website" => "Ver sitio web de la aplicación", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por <span class=\"author\">", "Administrator Documentation" => "Documentación de Administrador", "Online Documentation" => "Documentación en línea", @@ -124,6 +155,7 @@ $TRANSLATIONS = array( "Full Name" => "Nombre completo", "Email" => "e-mail", "Your email address" => "Tu dirección de e-mail", +"Fill in an email address to enable password recovery and receive notifications" => "Rellene una direccion de correo para habilitar la recuperacion de contraseña y recibir notificaciones. ", "Profile picture" => "Imágen de perfil", "Upload new" => "Subir nuevo", "Select new from Files" => "Seleccionar nuevo desde archivos", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index d0bc283d87..f82799eb71 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -76,6 +76,7 @@ $TRANSLATIONS = array( "Security Warning" => "Turvallisuusvaroitus", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä.", "Setup Warning" => "Asetusvaroitus", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki.", "Please double check the <a href=\"%s\">installation guides</a>." => "Lue <a href=\"%s\">asennusohjeet</a> tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index 35ddeb30ca..0230b3921f 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -1,12 +1,19 @@ <?php $TRANSLATIONS = array( +"Email sent" => "Message de e-posta inviate", "Language changed" => "Linguage cambiate", "Invalid request" => "Requesta invalide", "Error" => "Error", "Update" => "Actualisar", +"Very weak password" => "Contrasigno multo debile", +"Weak password" => "Contrasigno debile", +"So-so password" => "Contrasigno passabile", +"Good password" => "Contrasigno bon", +"Strong password" => "Contrasigno forte", "Groups" => "Gruppos", "Delete" => "Deler", "__language_name__" => "Interlingua", +"Security Warning" => "Aviso de securitate", "Log" => "Registro", "More" => "Plus", "Add your App" => "Adder tu application", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 6754ae2557..7ada22648d 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,12 +1,21 @@ <?php $TRANSLATIONS = array( "Saved" => "Salvat", +"test email settings" => "verifică setările de e-mail", +"If you received this email, the settings seem to be correct." => "Dacă ai primit acest e-mail atunci setările par a fi corecte.", "Email sent" => "Mesajul a fost expediat", +"Send mode" => "Modul de expediere", "Encryption" => "Încriptare", +"Authentication method" => "Modul de autentificare", "Unable to load list from App Store" => "Imposibil de actualizat lista din App Store.", "Authentication error" => "Eroare la autentificare", +"Your full name has been changed." => "Numele tău complet a fost schimbat.", +"Unable to change full name" => "Nu s-a puput schimba numele complet", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", +"Files decrypted successfully" => "Fișierele au fost decriptate cu succes", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nu s-a puput decripta fișierele tale, verifică owncloud.log sau întreabă administratorul", +"Couldn't decrypt your files, check your password and try again" => "Nu s-a puput decripta fișierele tale, verifică parola și încearcă din nou", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail invalid", "Unable to delete group" => "Nu s-a putut șterge grupul", @@ -18,17 +27,25 @@ $TRANSLATIONS = array( "Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Couldn't update app." => "Aplicaţia nu s-a putut actualiza.", "Wrong password" => "Parolă greșită", +"No user supplied" => "Nici un utilizator furnizat", "Unable to change password" => "Imposibil de schimbat parola", +"Sending..." => "Se expediază...", "User Documentation" => "Documentație utilizator", "Update to {appversion}" => "Actualizat la {versiuneaaplicaţiei}", "Disable" => "Dezactivați", "Enable" => "Activare", "Please wait...." => "Aşteptaţi vă rog....", +"Error while disabling app" => "Eroare în timpul dezactivării aplicației", +"Error while enabling app" => "Eroare în timpul activării applicației", "Updating...." => "Actualizare în curs....", "Error while updating app" => "Eroare în timpul actualizării aplicaţiei", "Error" => "Eroare", "Update" => "Actualizare", "Updated" => "Actualizat", +"Select a profile picture" => "Selectează o imagine de profil", +"Very weak password" => "Parolă foarte slabă", +"Weak password" => "Parolă slabă", +"Decrypting files... Please wait, this can take some time." => "Decriptare fișiere... Te rog așteaptă, poate dura ceva timp.", "deleted" => "șters", "undo" => "Anulează ultima acțiune", "Unable to remove user" => "Imposibil de eliminat utilizatorul", @@ -39,14 +56,19 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Trebuie să furnizaţi un nume de utilizator valid", "Error creating user" => "Eroare la crearea utilizatorului", "A valid password must be provided" => "Trebuie să furnizaţi o parolă validă", +"Warning: Home directory for user \"{user}\" already exists" => "Avertizare: Dosarul Acasă pentru utilizatorul \"{user}\" deja există", "__language_name__" => "_language_name_", "None" => "Niciuna", "Login" => "Autentificare", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Avertisment de securitate", "Setup Warning" => "Atenţie la implementare", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", +"Please double check the <a href=\"%s\">installation guides</a>." => "Vă rugăm să verificați <a href=\"%s\">ghiduri de instalare</ a>.", "Module 'fileinfo' missing" => "Modulul \"Fileinfo\" lipsește", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", +"Your PHP version is outdated" => "Versiunea PHP folosită este învechită", "Locale not working" => "Localizarea nu funcționează", "Internet connection not working" => "Conexiunea la internet nu funcționează", "Cron" => "Cron", @@ -57,13 +79,21 @@ $TRANSLATIONS = array( "Allow links" => "Pemite legături", "Allow users to share items to the public with links" => "Permite utilizatorilor să partajeze fișiere în mod public prin legături", "Allow public uploads" => "Permite încărcări publice", +"Allow users to enable others to upload into their publicly shared folders" => "Permite utilizatorilor sa activeze opțiunea de încărcare a fișierelor în dosarele lor publice de către alte persoane", "Allow resharing" => "Permite repartajarea", "Allow users to share items shared with them again" => "Permite utilizatorilor să repartajeze fișiere partajate cu ei", "Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", "Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", +"Allow mail notification" => "Permite notificări prin e-mail", +"Allow users to send mail notification for shared files" => "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune", "Security" => "Securitate", +"Forces the clients to connect to %s via an encrypted connection." => "Forțează clienții să se conecteze la %s folosind o conexiune sigură", "Server address" => "Adresa server-ului", "Port" => "Portul", +"SMTP Username" => "Nume utilizator SMTP", +"SMTP Password" => "Parolă SMTP", +"Test email settings" => "Verifică setările de e-mail", +"Send email" => "Expediază mesajul", "Log" => "Jurnal de activitate", "Log level" => "Nivel jurnal", "More" => "Mai mult", @@ -88,22 +118,32 @@ $TRANSLATIONS = array( "Current password" => "Parola curentă", "New password" => "Noua parolă", "Change password" => "Schimbă parola", +"Full Name" => "Nume complet", "Email" => "Email", "Your email address" => "Adresa ta de email", "Profile picture" => "Imagine de profil", +"Upload new" => "Încarcă una nouă", +"Select new from Files" => "Selectează una din Fișiere", "Remove image" => "Înlătură imagine", +"Either png or jpg. Ideally square but you will be able to crop it." => "Doar png sau jpg de formă pătrată. ", "Cancel" => "Anulare", "Choose as profile image" => "Alege drept imagine de profil", "Language" => "Limba", "Help translate" => "Ajută la traducere", "WebDAV" => "WebDAV", +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Folosește această adresă <a href=\"%s\" target=\"_blank\">pentru acces la fișierele tale folosind WebDAV</a>", +"Log-in password" => "Parolă", +"Decrypt all Files" => "Decriptează toate fișierele", "Login Name" => "Autentificare", "Create" => "Crează", +"Admin Recovery Password" => "Parolă de recuperare a Administratorului", +"Enter the recovery password in order to recover the users files during password change" => "Introdu parola de recuperare pentru a recupera fișierele utilizatorilor în timpul schimbării parolei", "Default Storage" => "Stocare implicită", "Unlimited" => "Nelimitată", "Other" => "Altele", "Username" => "Nume utilizator", "Storage" => "Stocare", +"change full name" => "schimbă numele complet", "set new password" => "setează parolă nouă", "Default" => "Implicită" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 4be0dbc6ee..c633d47268 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -3,6 +3,8 @@ $TRANSLATIONS = array( "Invalid value supplied for %s" => "Navedena je napačna vrednost za %s", "Saved" => "Shranjeno", "test email settings" => "preizkusi nastavitve elektronske pošte", +"If you received this email, the settings seem to be correct." => "Če ste prejeli to sporočilo, so nastavitve pravilne.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Prišlo je do napake med pošiljanjem sporočila na elektronski naslov. Spremeniti je treba nastavitve.", "Email sent" => "Elektronska pošta je poslana", "Send mode" => "Način pošiljanja", "Encryption" => "Šifriranje", @@ -93,6 +95,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Internetna povezava ne deluje.", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Na voljo ni delujoče internetne povezave. To pomeni, da nekaterih možnosti, kot so priklapljanje zunanje shrambe, obveščanja o posodobitvah in nameščanje programov tretje roke ni podprto. Dostop do datotek z oddaljenih mest in pošiljanje obvestil preko elektronske pošte je verjetno še vedno mogoče. Za omogočanje vseh zmožnosti mora biti vzpostavljena tudi ustrezna internetna povezava.", "Cron" => "Periodično opravilo", +"Last cron was executed at %s." => "Zadnje opravilo cron je bilo izvedeno ob %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Zadnje opravilo cron je bilo izvedeno ob %s. To je več kot uro nazaj. Nekaj je očitno narobe.", +"Cron was not executed yet!" => "Opravilo Cron še ni zagnano!", "Execute one task with each page loaded" => "Izvedi eno nalogo z vsako naloženo stranjo.", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", @@ -108,6 +113,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", "Allow mail notification" => "Dovoli obvestila preko elektronske pošte", +"Allow users to send mail notification for shared files" => "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vsili povezavo odjemalca z %s preko šifrirane povezave.", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 0d70fc225f..f3b189e08b 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -12,11 +12,11 @@ $TRANSLATIONS = array( "Authentication method" => "Autentiseringsmetod", "Unable to load list from App Store" => "Kan inte ladda listan från App Store", "Authentication error" => "Fel vid autentisering", -"Your full name has been changed." => "Ditt fulla namn har ändrats", +"Your full name has been changed." => "Hela ditt namn har ändrats", "Unable to change full name" => "Kunde inte ändra hela namnet", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", -"Files decrypted successfully" => "Filer dekrypteras utan fel", +"Files decrypted successfully" => "Filerna dekrypterades utan fel", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Det gick inte att dekryptera dina filer, kontrollera din owncloud.log eller fråga administratören", "Couldn't decrypt your files, check your password and try again" => "Det gick inte att dekryptera filerna, kontrollera ditt lösenord och försök igen", "Email saved" => "E-post sparad", @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillåt delning med alla", "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Allow mail notification" => "Tillåt e-post notifikation", +"Allow users to send mail notification for shared files" => "Tillåt användare att skicka mailnotifieringar för delade filer", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 7aadb1278d..0c8adce29c 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -26,6 +26,10 @@ $TRANSLATIONS = array( "Error" => "Помилка", "Update" => "Оновити", "Updated" => "Оновлено", +"Very weak password" => "Дуже слабкий пароль", +"Weak password" => "Слабкий пароль", +"Good password" => "Добрий пароль", +"Strong password" => "Надійний пароль", "deleted" => "видалені", "undo" => "відмінити", "Unable to remove user" => "Неможливо видалити користувача", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 242b72abc2..567d6fb594 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,11 +1,24 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "無效的提供值 %s", +"Saved" => "已儲存", +"test email settings" => "測試郵件設定", +"If you received this email, the settings seem to be correct." => "假如您收到這個郵件,此設定看起來是正確的。", +"A problem occurred while sending the e-mail. Please revisit your settings." => "當寄出郵件時發生問題。請重新檢視您的設定。", "Email sent" => "Email 已寄出", +"You need to set your user email before being able to send test emails." => "在準備要寄出測試郵件時您需要設定您的使用者郵件。", +"Send mode" => "寄送模式", "Encryption" => "加密", +"Authentication method" => "驗證方式", "Unable to load list from App Store" => "無法從 App Store 讀取清單", "Authentication error" => "認證錯誤", +"Your full name has been changed." => "您的全名已變更。", +"Unable to change full name" => "無法變更全名", "Group already exists" => "群組已存在", "Unable to add group" => "群組增加失敗", +"Files decrypted successfully" => "檔案解密成功", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "無法解密您的檔案,請檢查您的 owncloud.log 或是詢問您的管理者", +"Couldn't decrypt your files, check your password and try again" => "無法解密您的檔案,確認您的密碼並再重試一次", "Email saved" => "Email已儲存", "Invalid email" => "無效的email", "Unable to delete group" => "群組刪除錯誤", @@ -22,7 +35,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "錯誤的管理者還原密碼", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "後端不支援變更密碼,但成功更新使用者的加密金鑰", "Unable to change password" => "無法修改密碼", +"Sending..." => "寄送中...", "User Documentation" => "用戶說明文件", +"Admin Documentation" => "管理者文件", "Update to {appversion}" => "更新至 {appversion}", "Disable" => "停用", "Enable" => "啟用", @@ -35,6 +50,11 @@ $TRANSLATIONS = array( "Update" => "更新", "Updated" => "已更新", "Select a profile picture" => "選擇大頭貼", +"Very weak password" => "非常弱的密碼", +"Weak password" => "弱的密碼", +"So-so password" => "普通的密碼", +"Good password" => "好的密碼", +"Strong password" => "很強的密碼", "Decrypting files... Please wait, this can take some time." => "檔案解密中,請稍候。", "deleted" => "已刪除", "undo" => "復原", @@ -48,19 +68,37 @@ $TRANSLATIONS = array( "A valid password must be provided" => "一定要提供一個有效的密碼", "Warning: Home directory for user \"{user}\" already exists" => "警告:使用者 {user} 的家目錄已經存在", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "全部(嚴重問題,錯誤,警告,資訊,除錯)", +"Info, warnings, errors and fatal issues" => "資訊,警告,錯誤和嚴重問題", +"Warnings, errors and fatal issues" => "警告,錯誤和嚴重問題", +"Errors and fatal issues" => "錯誤和嚴重問題", +"Fatal issues only" => "只有嚴重問題", "None" => "無", "Login" => "登入", +"Plain" => "文字", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "安全性警告", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "您正透過未加密網頁存取 %s。我們強烈建議您設定您的主機必須使用加密網頁。", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "Setup Warning" => "設定警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the <a href=\"%s\">installation guides</a>." => "請參考<a href='%s'>安裝指南</a>。", "Module 'fileinfo' missing" => "遺失 'fileinfo' 模組", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", +"Your PHP version is outdated" => "您的 PHP 版本已過期", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "您的 PHP 版本已過期。我們強烈建議更新到 5.3.8 或更新的版本,因為舊的版本已知會毀損。這個可能會在安裝後無法使用。", "Locale not working" => "語系無法運作", +"System locale can not be set to a one which supports UTF-8." => "系統語系無法設定只支援 UTF-8", +"This means that there might be problems with certain characters in file names." => "這個意思是指在檔名中使用一些字元可能會有問題", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "我們強烈建議在您的系統上安裝必要的套件來支援以下的語系: %s", "Internet connection not working" => "無網際網路存取", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", "Cron" => "Cron", +"Last cron was executed at %s." => "最後的排程已執行於 %s。", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "最後的排程已執行於 %s。現在過了好幾個小時,看起來是有錯誤。", +"Cron was not executed yet!" => "排程沒有執行!", "Execute one task with each page loaded" => "當頁面載入時,執行", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php", "Use systems cron service to call the cron.php file every 15 minutes." => "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次", @@ -76,13 +114,22 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", "Allow mail notification" => "允許郵件通知", +"Allow users to send mail notification for shared files" => "允許使用者寄送有關分享檔案的郵件通知", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "強迫用戶端使用加密連線連接到 %s", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。", +"Email Server" => "郵件伺服器", +"This is used for sending out notifications." => "這是使用於寄送通知。", +"From address" => "寄件地址", +"Authentication required" => "必須驗證", "Server address" => "伺服器位址", "Port" => "連接埠", "Credentials" => "認證", +"SMTP Username" => "SMTP 帳號", +"SMTP Password" => "SMTP 密碼", +"Test email settings" => "測試郵件設定", +"Send email" => "寄送郵件", "Log" => "紀錄", "Log level" => "紀錄層級", "More" => "更多", @@ -92,7 +139,9 @@ $TRANSLATIONS = array( "Add your App" => "添加你的 App", "More Apps" => "更多Apps", "Select an App" => "選擇一個應用程式", +"Documentation:" => "文件:", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", +"See application website" => "檢視應用程式網站", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>", "Administrator Documentation" => "管理者說明文件", "Online Documentation" => "線上說明文件", @@ -108,19 +157,23 @@ $TRANSLATIONS = array( "Current password" => "目前密碼", "New password" => "新密碼", "Change password" => "變更密碼", +"Full Name" => "全名", "Email" => "信箱", "Your email address" => "您的電子郵件信箱", +"Fill in an email address to enable password recovery and receive notifications" => "填入電子郵件地址來啟用忘記密碼和接收通知的功能", "Profile picture" => "個人資料照片", "Upload new" => "上傳新的", "Select new from Files" => "從已上傳的檔案中選一個", "Remove image" => "移除圖片", "Either png or jpg. Ideally square but you will be able to crop it." => "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它", +"Your avatar is provided by your original account." => "您的圖像是由您原來的帳號所提供的。", "Cancel" => "取消", "Choose as profile image" => "設定為大頭貼", "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "使用這個地址<a href=\"%s\" target=\"_blank\">來透過 WebDAV 存取檔案</a>", +"The encryption app is no longer enabled, please decrypt all your files" => "加密的軟體不能長時間啟用,請解密所有您的檔案", "Log-in password" => "登入密碼", "Decrypt all Files" => "解密所有檔案", "Login Name" => "登入名稱", @@ -128,10 +181,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "管理者復原密碼", "Enter the recovery password in order to recover the users files during password change" => "為了修改密碼時能夠取回使用者資料,請輸入另一組還原用密碼", "Default Storage" => "預設儲存區", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "請輸入空間配額(例如: \"512 MB\"或是 \"12 GB\")", "Unlimited" => "無限制", "Other" => "其他", "Username" => "使用者名稱", "Storage" => "儲存區", +"change full name" => "變更全名", "set new password" => "設定新密碼", "Default" => "預設" ); -- GitLab From ad9ff07569a18010edcaa4d7c365da526fe867e3 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Fri, 25 Apr 2014 12:16:17 +0200 Subject: [PATCH 177/187] compress view-close icon --- core/img/actions/view-close.svg | 65 ++++++--------------------------- 1 file changed, 11 insertions(+), 54 deletions(-) diff --git a/core/img/actions/view-close.svg b/core/img/actions/view-close.svg index b56e81b2da..dc0ef1a08b 100644 --- a/core/img/actions/view-close.svg +++ b/core/img/actions/view-close.svg @@ -1,55 +1,12 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - height="32" - width="32" - version="1.1" - id="svg2" - inkscape:version="0.48.4 r9939" - sodipodi:docname="view-close.svg"> - <metadata - id="metadata12"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs10" /> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1002" - id="namedview8" - showgrid="false" - inkscape:zoom="14.75" - inkscape:cx="-1.1088659" - inkscape:cy="17.154822" - inkscape:window-x="0" - inkscape:window-y="34" - inkscape:window-maximized="1" - inkscape:current-layer="svg2" /> - <path - inkscape:connector-curvature="0" - d="m 23.071349,6.1012647 2.827764,2.8277646 -7.071292,7.0716937 7.071011,7.070411 -2.827877,2.828276 -7.07141,-7.070411 L 8.9286509,25.899692 6.1004861,23.071528 13.171381,16.000834 6.0625771,8.969416 8.9290523,6.1015409 15.999662,13.172352 z" - id="path6-3" - style="fill:#ffffff;fill-opacity:1" /> +<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="32" width="32" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <dc:title/> + </cc:Work> + </rdf:RDF> + </metadata> + <path fill="#FFF" d="m23.071,6.1013,2.8278,2.8278-7.0713,7.0717,7.071,7.0704-2.8279,2.8283-7.0714-7.0704l-7.0713,7.071-2.8282-2.828,7.0705-7.071-7.1084-7.0316,2.8665-2.8679,7.0709,7.0705z"/> </svg> -- GitLab From 4109521ccef38ff2cf16bf0fab7ff4d142d26713 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Fri, 25 Apr 2014 12:24:18 +0200 Subject: [PATCH 178/187] remove outdated test --- tests/lib/connector/sabre/file.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/tests/lib/connector/sabre/file.php b/tests/lib/connector/sabre/file.php index 011f8ffb6e..a9056460a5 100644 --- a/tests/lib/connector/sabre/file.php +++ b/tests/lib/connector/sabre/file.php @@ -102,22 +102,4 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { $file = new OC_Connector_Sabre_File($view, $info); $file->setName('/super*star.txt'); } - - /** - * @expectedException Sabre_DAV_Exception_Forbidden - */ - public function testDeleteSharedFails() { - $view = $this->getMock('\OC\Files\View', array('getRelativePath'), array(), '', false); - - $view->expects($this->any()) - ->method('getRelativePath') - ->will($this->returnValue('Shared')); - - $info = new \OC\Files\FileInfo('/Shared', null, null, array( - 'permissions' => \OCP\PERMISSION_ALL - )); - - $file = new OC_Connector_Sabre_File($view, $info); - $file->delete(); - } } -- GitLab From c53c4b9791914a7449adc1d73b2e66189100328b Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Fri, 25 Apr 2014 12:28:10 +0200 Subject: [PATCH 179/187] fix search by mime for shared single files --- apps/files_sharing/lib/cache.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 67a0410ef7..fa86d55730 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -86,14 +86,13 @@ class Shared_Cache extends Cache { public function get($file) { if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { - $path = 'files' . $this->storage->getMountPoint(); - $path .= ($file !== '') ? '/' . $file : ''; $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); - $data['path'] = $path; + $data['path'] = ''; if ($file === '') { $data['is_share_mount_point'] = true; } + $data['uid_owner'] = $this->storage->getOwner($file); return $data; } } else { @@ -299,6 +298,11 @@ class Shared_Cache extends Cache { $files = $this->getFolderContents($dir); // no results? if (!$files) { + // maybe it's a single shared file + $file = $this->get(''); + if (($mimepart && $file['mimepart'] === $mimepart) || ($mimetype && $file['mimetype'] === $mimetype)) { + $result[] = $file; + } continue; } foreach ($files as $file) { -- GitLab From 456ca0cf7d8fd259e58ea302b6849db5a001ce15 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Fri, 25 Apr 2014 12:31:44 +0200 Subject: [PATCH 180/187] fix paths of searchByMime results on substorages --- lib/private/files/view.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 58dfc73dcf..93d2c15c50 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1109,8 +1109,9 @@ class View { if ($results) { foreach ($results as $result) { $internalPath = $result['path']; - $result['path'] = $relativeMountPoint . $result['path']; - $files[] = new FileInfo($mountPoint . $result['path'], $storage, $internalPath, $result); + $result['path'] = rtrim($relativeMountPoint . $result['path'], '/'); + $path = rtrim($mountPoint . $internalPath, '/'); + $files[] = new FileInfo($path, $storage, $internalPath, $result); } } } -- GitLab From 93d2ff73f121c81ed1a507ae3239a332a9a48154 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt <hey@jancborchardt.net> Date: Fri, 25 Apr 2014 12:40:14 +0200 Subject: [PATCH 181/187] use trash as delete icon to differentiate from close --- core/img/actions/delete-hover.png | Bin 222 -> 274 bytes core/img/actions/delete-hover.svg | 2 +- core/img/actions/delete.png | Bin 205 -> 243 bytes core/img/actions/delete.svg | 12 ++---------- 4 files changed, 3 insertions(+), 11 deletions(-) diff --git a/core/img/actions/delete-hover.png b/core/img/actions/delete-hover.png index 48e6c089c9de1dfb777d052e0f7a54a7c049b3d3..3f8cb6eff92db2d16b041818ada8b4b5f343bec0 100644 GIT binary patch delta 258 zcmcb|IEiV3L_G%^0|SHn=l_We3=AyAPM#qg92^`q94Q?P3=EtF9+AZi47}Gtn9)gN zb_D|igJg+oL`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC3=I9AE{-7<y+<cm z^EDd?xTH52S$6U}_3_BEx*sTDdEsntB5+i@(bwTrb(!}5+TRm3Im4B1SHC!UZ1Sfi zRhw=;-r@V;B$va?8#~G_o#yg;`$&bYDSq(}KbxOyA3Cm_@vF+~w0$(=f=L2XqY%rq zlRiSC5y#dU9A%ldvz+zM-;T<r14fMtnAsTKI@azsn!n@ERPiiBTl=Z%wLA<A3=E#G KelF{r5}E+J1!777 delta 206 zcmbQlbdPa@L_G^L0|Ud`yN`kx7#Oqyd_r9R|NnoHf#DJZ!&L@`%M1)xkkC~m_7w(( zhdYm%F)%RjmIV0)GjQwLW|nQZ`}EbvzyJJ%JR%qv7{WYV978ywlM@^mF7|A55I7rC z{rz1jv%=wDSMKi4HZwLbxMtygcJIofn1;r$)0&>CEZfS+lT)s4sF`ukH{rpK>fpxA tcX!!XnDto0d9L%B3na4M3DRI-V9V5c{&TTfA_D^hgQu&X%Q~loCICP^Oo;#h diff --git a/core/img/actions/delete-hover.svg b/core/img/actions/delete-hover.svg index 9e5150359d..9583ec15b3 100644 --- a/core/img/actions/delete-hover.svg +++ b/core/img/actions/delete-hover.svg @@ -1,4 +1,4 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <path d="m8 1c-3.866 0-7 3.134-7 7s3.134 7 7 7 7-3.134 7-7-3.134-7-7-7zm-2.8438 2.75l2.8438 2.8438 2.844-2.8438 1.406 1.4062-2.8438 2.8438 2.8438 2.844-1.406 1.406-2.844-2.8438-2.8438 2.8438-1.4062-1.406 2.8438-2.844-2.8438-2.8438 1.4062-1.4062z" fill="#d40000"/> + <path d="m6.5 1-0.5 1h-3c-0.554 0-1 0.446-1 1v1h12v-1c0-0.554-0.446-1-1-1h-3l-0.5-1zm-3.5 4 0.875 9c0.061 0.549 0.5729 1 1.125 1h6c0.55232 0 1.064-0.45102 1.125-1l0.875-9z" fill-rule="evenodd" fill="#d40000"/> </svg> diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index 096ffb50d151da90b33d818c3b415f4cacaf6d50..e891b370cca7b3d83e937863dbbc9578c5b8b1bd 100644 GIT binary patch delta 227 zcmX@h_?dBnL_G%^0|SHn=l_We3=AyAPM#qg92^`q94Q?P3=EtF9+AZi47}Gtn9)gN zb_D|igJg+oL`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC3=9RHE{-7<y=Nx{ zavf0Mah_cH|Mw5giWzV3GpE>}3ehMLZfmW(X*XHOE9Q`w>^0_-E<sx-droLsrNlI0 zbMo!v%?_WYihHtrV6Y3H9OQUZasL<V&w~EP=N~>(*KnFqBJJDe5B3RsK@1ZT+clUu f{+=tEl5cc9Z{f2K8`T*Y7#KWV{an^LB{Ts5Fp^cn literal 205 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd7G?$phPQVgfdsSyd_r9R|NqZG9C#M&*#$DL zB*-tAK~zj!MsEFvZI>=zx%&57=^h3K23JoP#}JO|$q5ITBZMR+beI}=w#{bpN#}0h zIkr=HX+BrO6P5gRb2-9}Scoe%BzWALV=bs;5GbU>a^;+bIb+s>8O(OtjK7`>woNbG Q(gJdmr>mdKI;Vst0HSX-qW}N^ diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index f538389f4b..f0a3cd4db8 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,12 +1,4 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <metadata> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <path d="M12.95,11.536,11.536,12.95,8,9.4142,4.4645,12.95,3.0503,11.536,6.5858,8,3.0503,4.4644,4.4645,3.0502,8,6.5858,11.516,3.0311,12.95,4.4644,9.4143,8z" fill="#000"/> + <path d="m6.5 1-0.5 1h-3c-0.554 0-1 0.446-1 1v1h12v-1c0-0.554-0.446-1-1-1h-3l-0.5-1zm-3.5 4 0.875 9c0.061 0.549 0.5729 1 1.125 1h6c0.55232 0 1.064-0.45102 1.125-1l0.875-9z" fill-rule="evenodd"/> </svg> -- GitLab From 99c2c6b1c6cf2d8674ddd7eaeef3010a1b7892c8 Mon Sep 17 00:00:00 2001 From: Morris Jobke <morris.jobke@gmail.com> Date: Fri, 25 Apr 2014 13:15:58 +0200 Subject: [PATCH 182/187] remove metadata --- core/img/actions/add.svg | 9 --------- core/img/actions/close.svg | 9 --------- core/img/actions/download.svg | 9 --------- core/img/actions/upload.svg | 9 --------- core/img/actions/view-close.svg | 9 --------- 5 files changed, 45 deletions(-) diff --git a/core/img/actions/add.svg b/core/img/actions/add.svg index 3a2f01e1af..ecbab6f13a 100644 --- a/core/img/actions/add.svg +++ b/core/img/actions/add.svg @@ -1,13 +1,4 @@ <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <metadata> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> <g transform="matrix(-0.70711,-0.70711,0.70711,-0.70711,-724.84998,753.15998)"> <path d="m3.7547,1041.6,1.4142-1.4142,3.5355,3.5355,3.5355-3.5355,1.4142,1.4142-3.5355,3.5355,3.5355,3.5356-1.4142,1.4142-3.5355-3.5356-3.5164,3.5547-1.4333-1.4333,3.5355-3.5356z"/> </g> diff --git a/core/img/actions/close.svg b/core/img/actions/close.svg index f538389f4b..4471dbc630 100644 --- a/core/img/actions/close.svg +++ b/core/img/actions/close.svg @@ -1,12 +1,3 @@ <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <metadata> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> <path d="M12.95,11.536,11.536,12.95,8,9.4142,4.4645,12.95,3.0503,11.536,6.5858,8,3.0503,4.4644,4.4645,3.0502,8,6.5858,11.516,3.0311,12.95,4.4644,9.4143,8z" fill="#000"/> </svg> diff --git a/core/img/actions/download.svg b/core/img/actions/download.svg index af1df1199d..0d698bca8d 100644 --- a/core/img/actions/download.svg +++ b/core/img/actions/download.svg @@ -1,13 +1,4 @@ <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <metadata> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> <g transform="translate(0 -1036.4)"> <path d="m6,1037.4,4,0,0,7,5,0-7,7-7-7,5,0z"/> </g> diff --git a/core/img/actions/upload.svg b/core/img/actions/upload.svg index b86c08c666..80231797c9 100644 --- a/core/img/actions/upload.svg +++ b/core/img/actions/upload.svg @@ -1,13 +1,4 @@ <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <metadata> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> <path d="M10,12,6,12,6,6,2,6,8,0,14,6,10,6z"/> <path fill="#000" d="m0,11,0,5,16,0,0-5-2,0,0,3-12,0,0-3z"/> </svg> diff --git a/core/img/actions/view-close.svg b/core/img/actions/view-close.svg index dc0ef1a08b..89d1fab88d 100644 --- a/core/img/actions/view-close.svg +++ b/core/img/actions/view-close.svg @@ -1,12 +1,3 @@ <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="32" width="32" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <metadata> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> <path fill="#FFF" d="m23.071,6.1013,2.8278,2.8278-7.0713,7.0717,7.071,7.0704-2.8279,2.8283-7.0714-7.0704l-7.0713,7.071-2.8282-2.828,7.0705-7.071-7.1084-7.0316,2.8665-2.8679,7.0709,7.0705z"/> </svg> -- GitLab From 672a8248ce185cb38a6b8ae9617eb0e6bb186f8b Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Fri, 25 Apr 2014 13:56:45 +0200 Subject: [PATCH 183/187] Correct the path returned by getFolderContent for substorages --- lib/private/files/view.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 58dfc73dcf..5a3872e66e 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -996,6 +996,7 @@ class View { break; } } + $rootEntry['path'] = substr($path . '/' . $rootEntry['name'], strlen($user) + 2); // full path without /$user/ $files[] = new FileInfo($path . '/' . $rootEntry['name'], $subStorage, '', $rootEntry); } } -- GitLab From b42418246f3c0d623fc9cd028e905ac3b1303a9f Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Fri, 25 Apr 2014 14:04:22 +0200 Subject: [PATCH 184/187] Also fixed the returned internal path when getting the root shared item by id --- apps/files_sharing/lib/cache.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index fa86d55730..8c680e9c97 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -88,7 +88,7 @@ class Shared_Cache extends Cache { if ($cache = $this->getSourceCache($file)) { $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); - $data['path'] = ''; + $data['path'] = $file; if ($file === '') { $data['is_share_mount_point'] = true; } @@ -100,7 +100,6 @@ class Shared_Cache extends Cache { // cache information for the source item if (!is_int($file) || $file === 0) { $file = $this->storage->getSourceId(); - $mountPoint = $this->storage->getMountPoint(); } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' @@ -123,8 +122,8 @@ class Shared_Cache extends Cache { } else { $data['size'] = (int)$data['size']; } - if (isset($mountPoint)) { - $data['path'] = 'files/' . $mountPoint; + if (!is_int($file) || $file === 0) { + $data['path'] = ''; $data['is_share_mount_point'] = true; } return $data; -- GitLab From ad1265da136d8659a17b047ba00efa04918838d0 Mon Sep 17 00:00:00 2001 From: Volkan Gezer <volkangezer@gmail.com> Date: Fri, 25 Apr 2014 16:26:30 +0200 Subject: [PATCH 185/187] typo fix, by translators on transifex --- settings/templates/admin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 8eb1beb956..d8a800ca20 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -259,14 +259,14 @@ if (!$_['internetconnectionworking']) { <td <?php if ($_['shareAPIEnabled'] == 'no') print_unescaped('class="hidden"');?>> <input type="checkbox" name="shareapi_default_expire_date" id="shareapi_default_expire_date" value="1" <?php if ($_['shareDefaultExpireDateSet'] == 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareapi_default_expire_date"><?php p($l->t('Set default expire date'));?></label><br/> + <label for="shareapi_default_expire_date"><?php p($l->t('Set default expiration date'));?></label><br/> <?php p($l->t( 'Expire after ' )); ?> <input type="text" name='shareapi_expire_after_n_days' id="shareapi_expire_after_n_days" placeholder="<?php p('7')?>" value='<?php p($_['shareExpireAfterNDays']) ?>' /> <?php p($l->t( 'days' )); ?> <input type="checkbox" name="shareapi_enforce_expire_date" id="shareapi_enforce_expire_date" value="1" <?php if ($_['shareEnforceExpireDate'] == 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareapi_enforce_expire_date"><?php p($l->t('Enforce expire date'));?></label><br/> + <label for="shareapi_enforce_expire_date"><?php p($l->t('Enforce expiration date'));?></label><br/> <em><?php p($l->t('Expire shares by default after N days')); ?></em> </td> </tr> -- GitLab From ace0293bd198b6d2df9200997dd27a036eda3d8d Mon Sep 17 00:00:00 2001 From: Morris Jobke <morris.jobke@gmail.com> Date: Fri, 25 Apr 2014 16:34:48 +0200 Subject: [PATCH 186/187] fix layout of external storage config table --- apps/files_external/css/settings.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 1d3489f7f5..ee2c0aae64 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -6,7 +6,7 @@ td.status > span { } td.mountPoint, td.backend { width:160px; } -td.remove>img { visibility:hidden; padding-top:13px; } +td.remove>img { visibility:hidden; padding-top:7px; } tr:hover>td.remove>img { visibility:visible; cursor:pointer; } #addMountPoint>td { border:none; } #addMountPoint>td.applicable { visibility:hidden; } @@ -15,3 +15,8 @@ tr:hover>td.remove>img { visibility:visible; cursor:pointer; } #externalStorage label > input[type="checkbox"] { margin-right: 3px; } + +#externalStorage td.applicable div.chzn-container { + position: relative; + top: 3px; +} -- GitLab From c591cf0836720a4cfc6d441b363ece46ed19eadc Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud <owncloud-bot@tmit.eu> Date: Sat, 26 Apr 2014 01:55:32 -0400 Subject: [PATCH 187/187] [tx-robot] updated from transifex --- apps/files/l10n/ru.php | 1 + apps/files/l10n/sk_SK.php | 1 + apps/files/l10n/zh_HK.php | 2 ++ apps/files_external/l10n/ast.php | 1 + apps/files_external/l10n/zh_HK.php | 1 + apps/user_ldap/l10n/cs_CZ.php | 1 + apps/user_ldap/l10n/ru.php | 2 ++ l10n/ach/settings.po | 8 +++--- l10n/ady/settings.po | 8 +++--- l10n/af_ZA/settings.po | 8 +++--- l10n/ak/settings.po | 8 +++--- l10n/am_ET/settings.po | 8 +++--- l10n/ar/settings.po | 8 +++--- l10n/ast/files_external.po | 16 +++++------ l10n/ast/settings.po | 10 +++---- l10n/az/settings.po | 8 +++--- l10n/be/settings.po | 8 +++--- l10n/bg_BG/settings.po | 8 +++--- l10n/bn_BD/settings.po | 8 +++--- l10n/bs/settings.po | 8 +++--- l10n/ca/settings.po | 8 +++--- l10n/cs_CZ/lib.po | 12 ++++----- l10n/cs_CZ/settings.po | 12 ++++----- l10n/cs_CZ/user_ldap.po | 31 ++++++++++----------- l10n/cy_GB/settings.po | 8 +++--- l10n/da/settings.po | 8 +++--- l10n/de/settings.po | 8 +++--- l10n/de_AT/settings.po | 8 +++--- l10n/de_CH/settings.po | 8 +++--- l10n/de_DE/settings.po | 8 +++--- l10n/el/settings.po | 8 +++--- l10n/en@pirate/settings.po | 8 +++--- l10n/en_GB/lib.po | 12 ++++----- l10n/en_GB/settings.po | 14 +++++----- l10n/eo/settings.po | 8 +++--- l10n/es/lib.po | 12 ++++----- l10n/es/settings.po | 14 +++++----- l10n/es_AR/settings.po | 8 +++--- l10n/es_CL/settings.po | 8 +++--- l10n/es_CR/settings.po | 8 +++--- l10n/es_MX/settings.po | 8 +++--- l10n/et_EE/lib.po | 32 +++++++++++----------- l10n/et_EE/settings.po | 14 +++++----- l10n/eu/settings.po | 8 +++--- l10n/eu_ES/settings.po | 8 +++--- l10n/fa/settings.po | 8 +++--- l10n/fi_FI/settings.po | 14 +++++----- l10n/fr/lib.po | 12 ++++----- l10n/fr/settings.po | 15 ++++++----- l10n/fr_CA/settings.po | 8 +++--- l10n/gl/lib.po | 40 +++++++++++++-------------- l10n/gl/settings.po | 14 +++++----- l10n/he/settings.po | 8 +++--- l10n/hi/settings.po | 8 +++--- l10n/hr/settings.po | 8 +++--- l10n/hu_HU/settings.po | 8 +++--- l10n/hy/settings.po | 8 +++--- l10n/ia/settings.po | 8 +++--- l10n/id/settings.po | 8 +++--- l10n/is/settings.po | 8 +++--- l10n/it/files.po | 6 ++--- l10n/it/lib.po | 26 +++++++++--------- l10n/it/settings.po | 16 +++++------ l10n/ja/settings.po | 8 +++--- l10n/jv/settings.po | 8 +++--- l10n/ka_GE/settings.po | 8 +++--- l10n/km/settings.po | 8 +++--- l10n/kn/settings.po | 8 +++--- l10n/ko/settings.po | 8 +++--- l10n/ku_IQ/settings.po | 8 +++--- l10n/lb/settings.po | 8 +++--- l10n/lt_LT/settings.po | 8 +++--- l10n/lv/settings.po | 8 +++--- l10n/mk/settings.po | 8 +++--- l10n/ml/settings.po | 8 +++--- l10n/ml_IN/settings.po | 8 +++--- l10n/mn/settings.po | 8 +++--- l10n/ms_MY/settings.po | 8 +++--- l10n/my_MM/settings.po | 8 +++--- l10n/nb_NO/settings.po | 8 +++--- l10n/nds/settings.po | 8 +++--- l10n/ne/settings.po | 8 +++--- l10n/nl/settings.po | 8 +++--- l10n/nn_NO/settings.po | 8 +++--- l10n/nqo/settings.po | 8 +++--- l10n/oc/settings.po | 8 +++--- l10n/or_IN/settings.po | 8 +++--- l10n/pa/settings.po | 8 +++--- l10n/pl/settings.po | 8 +++--- l10n/pt_BR/lib.po | 13 ++++----- l10n/pt_BR/settings.po | 15 ++++++----- l10n/pt_PT/settings.po | 8 +++--- l10n/ro/settings.po | 8 +++--- l10n/ru/files.po | 9 ++++--- l10n/ru/settings.po | 25 ++++++++--------- l10n/ru/user_ldap.po | 33 ++++++++++++----------- l10n/si_LK/settings.po | 8 +++--- l10n/sk/settings.po | 8 +++--- l10n/sk_SK/files.po | 8 +++--- l10n/sk_SK/lib.po | 42 ++++++++++++++--------------- l10n/sk_SK/settings.po | 40 +++++++++++++-------------- l10n/sl/settings.po | 8 +++--- l10n/sq/settings.po | 8 +++--- l10n/sr/settings.po | 8 +++--- l10n/sr@latin/settings.po | 8 +++--- l10n/su/settings.po | 8 +++--- l10n/sv/settings.po | 15 ++++++----- l10n/sw_KE/settings.po | 8 +++--- l10n/ta_LK/settings.po | 8 +++--- l10n/te/settings.po | 8 +++--- 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 | 6 ++--- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 8 +++--- l10n/tr/lib.po | 12 ++++----- l10n/tr/settings.po | 16 +++++------ l10n/tzm/settings.po | 8 +++--- l10n/ug/settings.po | 8 +++--- l10n/uk/settings.po | 8 +++--- l10n/ur/settings.po | 8 +++--- l10n/ur_PK/settings.po | 8 +++--- l10n/uz/settings.po | 8 +++--- l10n/vi/settings.po | 8 +++--- l10n/zh_CN/settings.po | 8 +++--- l10n/zh_HK/core.po | 28 +++++++++---------- l10n/zh_HK/files.po | 8 +++--- l10n/zh_HK/files_external.po | 16 +++++------ l10n/zh_HK/settings.po | 10 +++---- l10n/zh_TW/settings.po | 8 +++--- lib/l10n/cs_CZ.php | 3 +++ lib/l10n/en_GB.php | 3 +++ lib/l10n/es.php | 3 +++ lib/l10n/et_EE.php | 14 +++++++++- lib/l10n/fr.php | 3 +++ lib/l10n/gl.php | 31 +++++++++++---------- lib/l10n/it.php | 15 +++++++---- lib/l10n/pt_BR.php | 3 +++ lib/l10n/sk_SK.php | 20 +++++++++++++- lib/l10n/tr.php | 3 +++ settings/l10n/ast.php | 1 + settings/l10n/cs_CZ.php | 2 ++ settings/l10n/en_GB.php | 3 +++ settings/l10n/es.php | 3 +++ settings/l10n/et_EE.php | 3 +++ settings/l10n/fi_FI.php | 3 +++ settings/l10n/fr.php | 3 +++ settings/l10n/gl.php | 3 +++ settings/l10n/it.php | 5 +++- settings/l10n/pt_BR.php | 3 +++ settings/l10n/ru.php | 8 ++++++ settings/l10n/sk_SK.php | 16 +++++++++++ settings/l10n/sv.php | 3 +++ settings/l10n/tr.php | 5 +++- settings/l10n/zh_HK.php | 1 + 163 files changed, 810 insertions(+), 679 deletions(-) diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index a9430276e4..d10a7e2eca 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -62,6 +62,7 @@ $TRANSLATIONS = array( "Size" => "Размер", "Modified" => "Дата изменения", "%s could not be renamed" => "%s не может быть переименован", +"Upload (max. %s)" => "Загружено (max. %s)", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", "max. possible: " => "макс. возможно: ", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 6c46bbd7fa..3d92dc1b5a 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -62,6 +62,7 @@ $TRANSLATIONS = array( "Size" => "Veľkosť", "Modified" => "Upravené", "%s could not be renamed" => "%s nemohol byť premenovaný", +"Upload (max. %s)" => "Nahrať (max. %s)", "File handling" => "Nastavenie správania sa k súborom", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru", "max. possible: " => "najväčšie možné:", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 7a701166e6..13aa6ac3e3 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -7,7 +7,9 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "名稱", +"Size" => "大小", "Save" => "儲存", +"New folder" => "新文件夾", "Download" => "下載", "Delete" => "刪除" ); diff --git a/apps/files_external/l10n/ast.php b/apps/files_external/l10n/ast.php index 7061cffaa8..e2c02408f3 100644 --- a/apps/files_external/l10n/ast.php +++ b/apps/files_external/l10n/ast.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "Folder name" => "Nome de la carpeta", +"Configuration" => "Configuración", "Options" => "Opciones", "Groups" => "Grupos", "Users" => "Usuarios", diff --git a/apps/files_external/l10n/zh_HK.php b/apps/files_external/l10n/zh_HK.php index 76e0ed69d2..7a6c4765f9 100644 --- a/apps/files_external/l10n/zh_HK.php +++ b/apps/files_external/l10n/zh_HK.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Folder name" => "資料夾名稱", "Groups" => "群組", "Users" => "用戶", "Delete" => "刪除" diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index d4039e9ef1..b7dfa5a4c4 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Záložní (kopie) port", "Disable Main Server" => "Zakázat hlavní server", "Only connect to the replica server." => "Připojit jen k záložnímu serveru.", +"Case insensitive LDAP server (Windows)" => "LDAP server nerozlišující velikost znaků (Windows)", "Turn off SSL certificate validation." => "Vypnout ověřování SSL certifikátu.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nedoporučuje se, určeno pouze k testovacímu použití. Pokud spojení funguje jen s touto volbou, importujte SSL certifikát vašeho LDAP serveru na server %s.", "Cache Time-To-Live" => "TTL vyrovnávací paměti", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index 2cf331d24c..e719f01c37 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -53,6 +53,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Для анонимного доступа оставьте DN и пароль пустыми.", "One Base DN per line" => "По одной базе поиска (Base DN) в строке.", "You can specify Base DN for users and groups in the Advanced tab" => "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"", +"Limit %s access to users meeting these criteria:" => "Ограничить доступ к %s пользователям, удовлетворяющим этому критерию:", "The filter specifies which LDAP users shall have access to the %s instance." => "Этот фильтр указывает, какие пользователи LDAP должны иметь доступ к %s.", "users found" => "пользователей найдено", "Back" => "Назад", @@ -67,6 +68,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Порт резервного сервера", "Disable Main Server" => "Отключить главный сервер", "Only connect to the replica server." => "Подключаться только к серверу-реплике.", +"Case insensitive LDAP server (Windows)" => "Нечувствительный к регистру сервер LDAP (Windows)", "Turn off SSL certificate validation." => "Отключить проверку сертификата SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Не рекомендуется, используйте только в режиме тестирования! Если соединение работает только с этой опцией, импортируйте на ваш %s сервер SSL-сертификат сервера LDAP.", "Cache Time-To-Live" => "Кэш времени жизни", diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 55090fdda4..df5507bffc 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index cf24a69acf..4117495a19 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 11cade389f..d0c9432d92 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index aba30a77dc..300b60d574 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index bc72585fe7..9555001471 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 6c4f418f12..194e841cfd 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -527,7 +527,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -539,7 +539,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ast/files_external.po b/l10n/ast/files_external.po index ac5c5b8231..761123b24d 100644 --- a/l10n/ast/files_external.po +++ b/l10n/ast/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 21:20+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 14:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -41,29 +41,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -84,7 +84,7 @@ msgstr "" #: templates/settings.php:10 msgid "Configuration" -msgstr "" +msgstr "Configuración" #: templates/settings.php:11 msgid "Options" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 6264d9ffec..d6f97da135 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -255,7 +255,7 @@ msgstr "" #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "desaniciáu" #: js/users.js:47 msgid "undo" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/az/settings.po b/l10n/az/settings.po index bcc8f73536..cd3448207b 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/be/settings.po b/l10n/be/settings.po index dea28e9ad6..8e0a3d7a13 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 98eb735a34..8d9891e1d2 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 99ae0a7f08..623325c221 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index ecad7263e7..484b7e50b1 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 1ab2d84629..a5ec54b996 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -527,7 +527,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -539,7 +539,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index bcc99c8b2a..f76d4777ab 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 20:00+0000\n" +"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\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" @@ -30,7 +30,7 @@ msgstr "" #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Kontaktujte prosím vašeho správce systému." #: private/app.php:236 #, php-format @@ -302,7 +302,7 @@ msgstr "%s s vámi sdílí »%s«" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "Sdílení %s selhalo, protože soubor neexistuje" #: private/share/share.php:523 #, php-format @@ -339,7 +339,7 @@ msgstr "Sdílení položky %s selhalo, protože uživatel %s není členem skupi #: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože sdílení pomocí linků není povoleno" #: private/share/share.php:636 #, php-format diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index ee503daeb0..fc665ac82a 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -532,19 +532,19 @@ msgid "Allow users to send mail notification for shared files" msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Vyprší po" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "dnech" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 634a01b88c..e948916520 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -6,6 +6,7 @@ # Twiguard, 2013 # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013 +# svetlemodry <jaroslav@lichtblau.cz>, 2014 # cvanca <mrs.jenkins.oh.yeah@gmail.com>, 2013 # pstast <petr@stastny.eu>, 2013-2014 # Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: pstast <petr@stastny.eu>\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 19:50+0000\n" +"Last-Translator: svetlemodry <jaroslav@lichtblau.cz>\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" @@ -92,43 +93,43 @@ msgstr "Úspěch" msgid "Error" msgstr "Chyba" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Konfigurace v pořádku" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Nesprávná konfigurace" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Nekompletní konfigurace" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Vyberte skupiny" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Vyberte objektové třídy" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Vyberte atributy" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "Test spojení byl úspěšný" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "Test spojení selhal" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "Opravdu si přejete smazat současné nastavení serveru?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Potvrdit smazání" @@ -152,7 +153,7 @@ msgstr[2] "nalezeno %s uživatelů" msgid "Invalid Host" msgstr "Neplatný hostitel" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "Nelze nalézt požadovanou vlastnost" @@ -344,7 +345,7 @@ msgstr "Připojit jen k záložnímu serveru." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "LDAP server nerozlišující velikost znaků (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 61d870daf0..33fa7e97f5 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 3eee6bae03..f527b399c8 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -528,7 +528,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -540,7 +540,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 5fc2929ecc..5e22f94a7e 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -533,7 +533,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -545,7 +545,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 75bd12b6bd..658a5dd82c 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 89ffb2a435..02d76f4488 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -533,7 +533,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -545,7 +545,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 0451f768d6..6bb522f389 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -533,7 +533,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -545,7 +545,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 7fdf75d667..4094ea648c 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -533,7 +533,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -545,7 +545,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 7665c3704c..6f2f0d0bb7 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 11fdcf4ddc..5772e85227 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 14:01+0000\n" +"Last-Translator: mnestis <transifex@mnestis.net>\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" @@ -20,11 +20,11 @@ msgstr "" #: base.php:723 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "You are accessing the server from an untrusted domain." #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Please contact your administrator" #: private/app.php:236 #, php-format @@ -296,7 +296,7 @@ msgstr "%s shared \"%s\" with you" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "Sharing %s failed, because the file does not exist" #: private/share/share.php:523 #, php-format diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 07dbb86c48..6b026ba483 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,24 +525,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Allow users to send mail notification for shared files" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Expire after " #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "days" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Expire shares by default after N days" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 576e1faca1..e4c92cf839 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/es/lib.po b/l10n/es/lib.po index ab62540ee1..aad3e7a59b 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 18:00+0000\n" +"Last-Translator: Art O. Pal <artopal@fastmail.fm>\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" @@ -27,11 +27,11 @@ msgstr "" #: base.php:723 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "Está accediendo al servidor desde un dominio inseguro." #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Contacte a su administrador" #: private/app.php:236 #, php-format @@ -303,7 +303,7 @@ msgstr "%s ha compatido »%s« contigo" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "No se pudo compartir %s porque el archivo no existe" #: private/share/share.php:523 #, php-format diff --git a/l10n/es/settings.po b/l10n/es/settings.po index b80b5d2b29..62346be476 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -539,24 +539,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Caduca luego de" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "días" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Archivos compartidos caducan luego de N días" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 152b1b0a9f..7dfabe9ba2 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -528,7 +528,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "Habilitar a los usuarios para enviar notificaciones por correo para archivos compartidos" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -540,7 +540,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 8ef8dd331c..67911da128 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/es_CR/settings.po b/l10n/es_CR/settings.po index fbcec64764..2720f55063 100644 --- a/l10n/es_CR/settings.po +++ b/l10n/es_CR/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 93d692913b..a9e751dcaf 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 0bb327fdb7..e4b52db3a5 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 06:20+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -21,11 +21,11 @@ msgstr "" #: base.php:723 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "Sa kasutad serverit usalduseta asukohast" #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Palun kontakteeru oma süsteemihalduriga" #: private/app.php:236 #, php-format @@ -297,44 +297,44 @@ msgstr "%s jagas sinuga »%s«" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna faili pole olemas" #: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna kuna kasutaja %s on üksuse omanik" #: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna kasutajat %s pole olemas" #: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna kasutaja %s pole ühegi grupi liige, millede liige on %s" #: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna see üksus on juba jagatud %s" #: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna gruppi %s pole olemas" #: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna %s pole grupi %s liige" #: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna linkidega jagamine pole lubatud" #: private/share/share.php:636 #, php-format @@ -346,12 +346,12 @@ msgstr "Jagamise tüüp %s ei ole õige %s jaoks" msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi" #: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud" #: private/share/share.php:940 #, php-format @@ -377,7 +377,7 @@ msgstr "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja" #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "%s jagamine ebaõnnestus, kuna jagamise õigused ületavad %s jaoks määratud õigusi" +msgstr "%s jagamine ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi" #: private/share/share.php:1391 #, php-format diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 8aabd43311..9eb8bed007 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -526,24 +526,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Aegu pärast" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "päeva" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Peata jagamine N päeva möödudes" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 4ca4b2366d..3cbf91c9ba 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -527,7 +527,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -539,7 +539,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index fc10a358ad..ce42674fd7 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 0985d0aa7c..33cb1f38c1 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -527,7 +527,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -539,7 +539,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 8d077ff0d7..cdf1b1ee44 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,24 +525,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Vanhenna" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "päivän jälkeen" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Vanhenna jaot oletuksena N päivän jälkeen" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 6831f9d7f7..aaf7e38f7f 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 07:00+0000\n" +"Last-Translator: ptit_boogy <ptit.boogy@gmail.com>\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" @@ -24,11 +24,11 @@ msgstr "" #: base.php:723 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "Vous accédez au serveur à partir d'un domaine non-approuvé." #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Veuillez contacter votre administrateur" #: private/app.php:236 #, php-format @@ -300,7 +300,7 @@ msgstr "%s partagé »%s« avec vous" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "Le partage de %s a échoué car le fichier n'existe pas" #: private/share/share.php:523 #, php-format diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index c13fa5fe4b..d07eec044e 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -7,6 +7,7 @@ # Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>, 2013 # Christophe Lherieau <skimpax@gmail.com>, 2013-2014 # etiess <etiess@gmail.com>, 2013 +# ptit_boogy <ptit.boogy@gmail.com>, 2014 # lyly95, 2013 # Mystyle <maelvstyle@gmail.com>, 2013 # ogre_sympathique <ogre.sympathique@speed.1s.fr>, 2013 @@ -18,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -535,24 +536,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Expire après" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "jours" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Par défaut, les partages expireront après N jours" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index 19a3565236..951ff58a54 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index f5b7f93813..91e171ec87 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 12:20+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\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" @@ -21,11 +21,11 @@ msgstr "" #: base.php:723 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "Esta accedendo desde un dominio non fiábel." #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Contacte co administrador" #: private/app.php:236 #, php-format @@ -297,44 +297,44 @@ msgstr "%s compartiu «%s» con vostede" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "Fallou a compartición de %s, o ficheiro non existe" #: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" -msgstr "Fallou a compartición de %s, xa que o propietario do elemento é o usuario %s" +msgstr "Fallou a compartición de %s, o propietario do elemento é o usuario %s" #: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "Fallou a compartición de %s, xa que o usuario %s non existe" +msgstr "Fallou a compartición de %s, o usuario %s non existe" #: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "Fallou a compartición de %s, xa que o usuario %s non é membro de ningún grupo que sexa membro de %s" +msgstr "Fallou a compartición de %s, o usuario %s non é membro de ningún grupo que sexa membro de %s" #: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "Fallou a compartición de %s, xa que este elemento xa está compartido con %s" +msgstr "Fallou a compartición de %s, este elemento xa está compartido con %s" #: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "Fallou a compartición de %s, xa que o grupo %s non existe" +msgstr "Fallou a compartición de %s, o grupo %s non existe" #: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "Fallou a compartición de %s, xa que %s non é membro do grupo %s" +msgstr "Fallou a compartición de %s, %s non é membro do grupo %s" #: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "Fallou a compartición de %s, xa que non está permitido compartir con ligazóns" +msgstr "Fallou a compartición de %s, non está permitido compartir con ligazóns" #: private/share/share.php:636 #, php-format @@ -346,12 +346,12 @@ msgstr "Non se admite a compartición do tipo %s para %s" msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "Non é posíbel estabelecer permisos para %s, xa que os permisos superan os permisos concedidos a %s" +msgstr "Non é posíbel estabelecer permisos para %s, os permisos superan os permisos concedidos a %s" #: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "Non é posíbel estabelecer permisos para %s, xa que non se atopa o elemento" +msgstr "Non é posíbel estabelecer permisos para %s, non se atopa o elemento" #: private/share/share.php:940 #, php-format @@ -371,31 +371,31 @@ msgstr "Non se atopou a infraestrutura de compartición para %s" #: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "Fallou a compartición de %s, xa que a compartición orixinal é do usuario %s" +msgstr "Fallou a compartición de %s, compartición orixinal é do usuario %s" #: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "Fallou a compartición de %s, xa que os permisos superan os permisos concedidos a %s" +msgstr "Fallou a compartición de %s, os permisos superan os permisos concedidos a %s" #: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "Fallou a compartición de %s, xa que non está permitido repetir a compartción" +msgstr "Fallou a compartición de %s, non está permitido repetir a compartción" #: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "Fallou a compartición de %s, xa que a infraestrutura de compartición para %s non foi quen de atopar a orixe" +msgstr "Fallou a compartición de %s, a infraestrutura de compartición para %s non foi quen de atopar a orixe" #: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "Fallou a compartición de %s, xa que non foi posíbel atopar o ficheiro na caché de ficheiros" +msgstr "Fallou a compartición de %s, non foi posíbel atopar o ficheiro na caché de ficheiros" #: private/tags.php:193 #, php-format diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index cbf58427c9..83ef009792 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -526,24 +526,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Caduca após" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "días" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "As comparticións, de xeito predeterminado, caducan aos N días" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 9111523a3b..4a0f27ab40 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index cb8cd6f4aa..32ba2807f8 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 106cdb3359..9fb9f1a5b6 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 9824dfce4a..d9f7418f59 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -528,7 +528,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -540,7 +540,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index f48d5efc3c..b80e564d9e 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 499e1889ea..9291c01ff9 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 1ce9c6bf3c..d5164bb3b0 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/is/settings.po b/l10n/is/settings.po index b726e8a309..d13412cdd7 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/it/files.po b/l10n/it/files.po index 96b1206254..7739fdf5a5 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 16:06+0000\n" +"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 3f16402ee1..0c4e375bad 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 16:10+0000\n" +"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\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" @@ -23,11 +23,11 @@ msgstr "" #: base.php:723 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "Stai accedendo al server da un dominio non affidabile." #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Contatta il tuo amministratore" #: private/app.php:236 #, php-format @@ -299,7 +299,7 @@ msgstr "%s ha condiviso «%s» con te" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché il file non esiste" #: private/share/share.php:523 #, php-format @@ -336,7 +336,7 @@ msgstr "Condivisione di %s non riuscita, poiché %s non appartiene al gruppo %s" #: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "Condivisione di %s non riuscita, poiché i link non sono ammessi" +msgstr "Condivisione di %s non riuscita, poiché i collegamenti non sono consentiti" #: private/share/share.php:636 #, php-format @@ -348,12 +348,12 @@ msgstr "Il tipo di condivisione %s non è valido per %s" msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Impostazione permessi per %s non riuscita, poiché i permessi superano i permessi accordati a %s" #: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Impostazione permessi per %s non riuscita, poiché l'elemento non è stato trovato" #: private/share/share.php:940 #, php-format @@ -379,25 +379,25 @@ msgstr "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso prec #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "Condivisione di %s non riuscita, poiché i permessi sono superiori a quelli rilasciati a %s" +msgstr "Condivisione di %s non riuscita, poiché i permessi superano quelli accordati a %s" #: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "Condivisione di %s non riuscita, poiché la ri-condivisione non è ammessa" +msgstr "Condivisione di %s non riuscita, poiché la ri-condivisione non è consentita" #: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua origine" +msgstr "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua fonte" #: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "Condivisione di %s non riuscita, poiché il file non risiede nella cache" +msgstr "Condivisione di %s non riuscita, poiché il file non è stato trovato nella cache" #: private/tags.php:193 #, php-format diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 343893ee43..8b92592034 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,27 +525,27 @@ msgstr "Consenti le notifiche tramite posta elettronica" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "Consenti agli utenti di mandare e-mail di notifica per i file condivisi" +msgstr "Consenti agli utenti di inviare email di notifica per i file condivisi" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Scadenza dopo" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "giorni" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Le condivisioni scadono in modo predefinito dopo N giorni" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index 3019b69a37..6ed86fb007 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -529,7 +529,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -541,7 +541,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index 3644843d73..b110d3bb88 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 857558b5be..c56746c385 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 1a3a0cff7c..ea12daf58a 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -526,7 +526,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -538,7 +538,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 81d7d001d5..b2914c0adc 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 5146c505d0..067f88a248 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -529,7 +529,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -541,7 +541,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 28870a3e3d..0866a1a0bd 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 619604ebe1..c37e8ad4c4 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 350980eba0..7c69da8e29 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -529,7 +529,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -541,7 +541,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 720551be48..9950bba6e1 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 6918bfbeec..d666e4f265 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index bb4bf53233..9c4432176c 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 3dd09c0bcf..0e584edd60 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index 487e064ed3..5b2d9dcaf4 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 249b907cc7..0fb7bf7d85 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 964ffe75da..bbbe692ecc 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index a5a8b1efa7..ed7e4dfa99 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -528,7 +528,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -540,7 +540,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index f08a085c0e..aca2bdf583 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index b38cfc9657..c232c9c8c4 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index dad578d0cb..9f4643db2f 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -528,7 +528,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -540,7 +540,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 4eb5652398..9553225cb0 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -527,7 +527,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -539,7 +539,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index ac0aafcecb..57d51e3891 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 3044613b23..017851a30a 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/or_IN/settings.po b/l10n/or_IN/settings.po index 4a0898c092..e3510389e2 100644 --- a/l10n/or_IN/settings.po +++ b/l10n/or_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index db15bbc6f8..9e45a08cb1 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 7692687c57..ffcba5ce72 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -527,7 +527,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -539,7 +539,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 34aeb81931..345c0ee42d 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -4,13 +4,14 @@ # # Translators: # Flávio Veras <flaviove@gmail.com>, 2013-2014 +# giovanisp, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 18:00+0000\n" +"Last-Translator: giovanisp\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" @@ -20,11 +21,11 @@ msgstr "" #: base.php:723 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "Você está acessando o servidor a partir de um domínio não confiável." #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Por favor, contate o administrador." #: private/app.php:236 #, php-format @@ -296,7 +297,7 @@ msgstr "%s compartilhou »%s« com você" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o arquivo não existe" #: private/share/share.php:523 #, php-format diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 12f8932fc8..9321507f33 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -5,12 +5,13 @@ # Translators: # bjamalaro <bjamalaro@yahoo.com.br>, 2013 # Flávio Veras <flaviove@gmail.com>, 2013-2014 +# giovanisp, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -526,24 +527,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Permitir aos usuários enviar notificação de email para arquivos compartilhados" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Expirar depois de" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "dias" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Expirar compartilhamentos automaticamente depois de N dias" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 910abe6402..9a3d1b3728 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -531,7 +531,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -543,7 +543,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 2b244fc458..85daa2a84f 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -527,7 +527,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -539,7 +539,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 8c1d9aecec..8593f90185 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -4,6 +4,7 @@ # # Translators: # lord93 <lordakryl@gmail.com>, 2013 +# Denis Plastinin <denispal@gmail.com>, 2014 # Evgeniy Spitsyn <evgeniy@spitsyn.net>, 2013 # jekader <jekader@gmail.com>, 2013 # mogarych <mogarych@mail.ru>, 2014 @@ -19,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 07:30+0000\n" +"Last-Translator: Denis Plastinin <denispal@gmail.com>\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" @@ -315,7 +316,7 @@ msgstr "%s не может быть переименован" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Загружено (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 0d1481475c..cd956b5704 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -7,6 +7,7 @@ # Alexander Shashkevych <alex@stunpix.com>, 2013 # alfsoft <alfsoft@gmail.com>, 2013 # lord93 <lordakryl@gmail.com>, 2013 +# Denis Plastinin <denispal@gmail.com>, 2014 # Evgeniy Spitsyn <evgeniy@spitsyn.net>, 2013 # jekader <jekader@gmail.com>, 2013 # eurekafag <rkfg@rkfg.me>, 2013 @@ -22,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -186,7 +187,7 @@ msgstr "Невозможно изменить пароль" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Отправляется ..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -194,7 +195,7 @@ msgstr "Пользовательская документация" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Документация администратора" #: js/apps.js:67 msgid "Update to {appversion}" @@ -355,11 +356,11 @@ msgstr "" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -539,7 +540,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -551,7 +552,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 @@ -608,11 +609,11 @@ msgstr "Полномочия" #: templates/admin.php:380 msgid "SMTP Username" -msgstr "" +msgstr "Имя пользователя" #: templates/admin.php:383 msgid "SMTP Password" -msgstr "" +msgstr "Пароль" #: templates/admin.php:387 msgid "Test email settings" @@ -620,7 +621,7 @@ msgstr "" #: templates/admin.php:388 msgid "Send email" -msgstr "" +msgstr "Отправить сообщение" #: templates/admin.php:393 msgid "Log" @@ -666,7 +667,7 @@ msgstr "Выберите приложение" #: templates/apps.php:43 msgid "Documentation:" -msgstr "" +msgstr "Документация" #: templates/apps.php:49 msgid "See application page at apps.owncloud.com" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 3410a87464..07dbddd68e 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -6,6 +6,7 @@ # Alexander Shashkevych <alex@stunpix.com>, 2013 # Fenuks <fenuksuh@ya.ru>, 2013 # alfsoft <alfsoft@gmail.com>, 2013 +# Denis Plastinin <denispal@gmail.com>, 2014 # jekader <jekader@gmail.com>, 2013 # Евгений Белоусов <kvantor12@gmail.com>, 2013 # mogarych <mogarych@mail.ru>, 2014 @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 08:10+0000\n" +"Last-Translator: Denis Plastinin <denispal@gmail.com>\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" @@ -96,43 +97,43 @@ msgstr "Успешно" msgid "Error" msgstr "Ошибка" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Конфигурация в порядке" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Конфигурация неправильна" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Конфигурация не завершена" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Выберите группы" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Выберите объектные классы" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Выберите атрибуты" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "Проверка соединения удалась" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "Проверка соединения не удалась" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "Вы действительно хотите удалить существующую конфигурацию сервера?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Подтверждение удаления" @@ -156,7 +157,7 @@ msgstr[2] "%s пользователей найдено" msgid "Invalid Host" msgstr "Неверный сервер" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "Не могу найти требуемой функциональности" @@ -279,7 +280,7 @@ msgstr "Вы можете задать Base DN для пользователей #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Ограничить доступ к %s пользователям, удовлетворяющим этому критерию:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -348,7 +349,7 @@ msgstr "Подключаться только к серверу-реплике." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Нечувствительный к регистру сервер LDAP (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 1bcf2f4f2b..fb60e08cda 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 9d9d3a33b4..b9f2f2eb06 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 1327e6bfc5..630e514b15 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 07:50+0000\n" +"Last-Translator: mhh <marian.hvolka@stuba.sk>\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" @@ -304,7 +304,7 @@ msgstr "%s nemohol byť premenovaný" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Nahrať (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 92d4f5a9d5..e622440066 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 07:40+0000\n" +"Last-Translator: mhh <marian.hvolka@stuba.sk>\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" @@ -25,7 +25,7 @@ msgstr "" #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Kontaktujte prosím vášho administrátora" #: private/app.php:236 #, php-format @@ -209,7 +209,7 @@ msgstr "Musíte zadať jestvujúci účet alebo administrátora." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "Používateľské meno a/alebo heslo pre MySQL/MariaDB databázu je neplatné" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -237,20 +237,20 @@ msgstr "Podozrivý príkaz bol: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "Používateľ '%s'@'localhost' už v MySQL/MariaDB existuje." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Zahodiť používateľa z MySQL/MariaDB." #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "Používateľ '%s'@'%%' už v MySQL/MariaDB existuje" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Zahodiť používateľa z MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -297,17 +297,17 @@ msgstr "%s s vami zdieľa »%s«" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "Zdieľanie %s zlyhalo, pretože súbor neexistuje" #: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" -msgstr "" +msgstr "Zdieľanie %s zlyhalo, pretože používateľ %s je vlastníkom položky" #: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Zdieľanie %s zlyhalo, pretože používateľ %s neexistuje" #: private/share/share.php:538 #, php-format @@ -319,39 +319,39 @@ msgstr "" #: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Zdieľanie %s zlyhalo, pretože táto položka už je zdieľaná s %s" #: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Zdieľanie %s zlyhalo, pretože skupina %s neexistuje" #: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Zdieľanie %s zlyhalo, pretože %s nie je členom skupiny %s" #: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Zdieľanie %s zlyhalo, pretože zdieľanie odkazom nie je povolené" #: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Typ zdieľania %s nie je platný pre %s" #: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Nastavenie povolení pre %s zlyhalo, pretože povolenia prekračujú povolenia udelené %s" #: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Nastavenie povolení pre %s zlyhalo, pretože položka sa nenašla" #: private/share/share.php:940 #, php-format @@ -458,7 +458,7 @@ msgstr "pred rokmi" msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "V mene používateľa sú povolené len nasledovné znaky: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" #: private/user/manager.php:237 msgid "A valid username must be provided" @@ -470,4 +470,4 @@ msgstr "Musíte zadať platné heslo" #: private/user/manager.php:246 msgid "The username is already being used" -msgstr "" +msgstr "Meno používateľa je už použité" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 8373c69dd4..490dc7d169 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -22,7 +22,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Zadaná neplatná hodnota pre %s" #: admin/controller.php:73 msgid "Saved" @@ -30,16 +30,16 @@ msgstr "Uložené" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "nastavenia testovacieho emailu" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Ak ste dostali tento email, nastavenie je správne." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Vyskytol sa problém pri odosielaní emailu. Prosím, znovu skontrolujte svoje nastavenia." #: admin/controller.php:99 msgid "Email sent" @@ -47,7 +47,7 @@ msgstr "Email odoslaný" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Musíte nastaviť svoj používateľský email, než budete môcť odoslať testovací email." #: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" @@ -88,17 +88,17 @@ msgstr "Nie je možné pridať skupinu" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Súbory sú úspešne dešifrované" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Nemožno dešifrovať vaše súbory, skontrolujte svoj owncloud.log alebo požiadajte o pomoc správcu" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Nemožno dešifrovať vaše súbory, skontrolujte svoje heslo a skúste to znova" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -334,7 +334,7 @@ msgstr "Prihlásenie" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Neformátovaný" #: templates/admin.php:19 msgid "NT LAN Manager" @@ -456,7 +456,7 @@ msgstr "" #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron sa ešte nespustil!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" @@ -523,22 +523,22 @@ msgstr "Povoliť odosielať upozornenia emailom" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Platnosť" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "dni" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 @@ -571,7 +571,7 @@ msgstr "Email server" #: templates/admin.php:313 msgid "This is used for sending out notifications." -msgstr "" +msgstr "Používa sa na odosielanie upozornení." #: templates/admin.php:344 msgid "From address" @@ -579,7 +579,7 @@ msgstr "Z adresy" #: templates/admin.php:366 msgid "Authentication required" -msgstr "" +msgstr "Vyžaduje sa overenie" #: templates/admin.php:370 msgid "Server address" @@ -603,7 +603,7 @@ msgstr "SMTP heslo" #: templates/admin.php:387 msgid "Test email settings" -msgstr "" +msgstr "Nastavenia testovacieho emailu" #: templates/admin.php:388 msgid "Send email" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index c422f3555d..472cb4abbe 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -526,7 +526,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti." #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -538,7 +538,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index f2e9339df6..8f0f7655d1 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 58fbbae97c..df050052ef 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index db0d8ebbd6..c0c907fcf6 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/su/settings.po b/l10n/su/settings.po index 88706c97e7..b33b3f2489 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 31f1d96bef..92217eae0d 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -15,12 +15,13 @@ # kallemooo <karl.h.thoren@gmail.com>, 2013 # Magnus Höglund <magnus@linux.com>, 2013 # medialabs, 2013 +# Stefan Gagner <stefan@mei-ya.se>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -536,24 +537,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Tillåt användare att skicka mailnotifieringar för delade filer" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Förfaller efter" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "dagar" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Låt delningar förfalla som standard efter N dagar" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index d18be24c39..9ab7ca5f0a 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 868be97f59..7010ade872 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/te/settings.po b/l10n/te/settings.po index ce65801a92..474e2dda8d 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index da2bff21b7..d2d3c1d59a 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 60883d08ed..da889ccd57 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index bcaf26ee2e..eca46bd5f3 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ba18852737..43030f427e 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 0c99318f31..129d49cfd4 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d41084e133..272c68294c 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index a83149715f..a2b4e25e56 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 5085fc5108..61fe357e38 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index a159a34d18..1c65929831 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 134ff39cfd..a12718f1e9 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -523,7 +523,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -535,7 +535,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index b7649897ce..c11ec36ab7 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 8e69c2581c..1ddac4ff5d 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: 2014-04-25 01:54-0400\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 5aefd0e5da..8cacfd7496 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index a8c8a4c4eb..30040bccbc 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 14:20+0000\n" +"Last-Translator: volkangezer <volkangezer@gmail.com>\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" @@ -23,11 +23,11 @@ msgstr "" #: base.php:723 msgid "You are accessing the server from an untrusted domain." -msgstr "" +msgstr "Sunucuya güvenilmeyen bir alan adından ulaşıyorsunuz." #: base.php:724 msgid "Please contact your administrator" -msgstr "" +msgstr "Lütfen yöneticinizle iletişime geçin" #: private/app.php:236 #, php-format @@ -299,7 +299,7 @@ msgstr "%s sizinle »%s« paylaşımında bulundu" #: private/share/share.php:498 #, php-format msgid "Sharing %s failed, because the file does not exist" -msgstr "" +msgstr "%s paylaşımı, dosya mevcut olmadığından başarısız oldu" #: private/share/share.php:523 #, php-format diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 738ac07225..83c08a1580 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -65,7 +65,7 @@ msgstr "Kimlik doğrulama yöntemi" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Uygulama Mağazasın'dan liste yüklenemiyor" +msgstr "Uygulama Mağazası'ndan liste yüklenemiyor" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:49 @@ -528,24 +528,24 @@ msgid "Allow users to send mail notification for shared files" msgstr "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 msgid "Expire after " -msgstr "" +msgstr "Şu süreden sonra süresi dolsun" #: templates/admin.php:266 msgid "days" -msgstr "" +msgstr "gün" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 msgid "Expire shares by default after N days" -msgstr "" +msgstr "Paylaşımların süresini öntanımlı olarak N günden sonra doldur" #: templates/admin.php:278 msgid "Security" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 73319d7bf5..5b93005287 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 32bf6b17eb..3107e223b8 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 5f23c4f162..3cb255ade6 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index 227969e3ad..56b4ba0d04 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 5174cf78ac..412ae4ebb6 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index 80247d7140..e4130ccd53 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index a96f09c178..514ccecb94 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -525,7 +525,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -537,7 +537,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 370c523969..68e0386823 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -531,7 +531,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -543,7 +543,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 6cf893c49e..9a2ebdf31b 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 17:30+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" @@ -134,55 +134,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "設定" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "" -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "今日" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "昨日" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "前一月" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index e2e1bffb7f..ebfecaaf0a 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 17:50+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" @@ -283,7 +283,7 @@ msgstr "名稱" #: js/files.js:569 templates/index.php:79 msgid "Size" -msgstr "" +msgstr "大小" #: js/files.js:570 templates/index.php:81 msgid "Modified" @@ -345,7 +345,7 @@ msgstr "" #: templates/index.php:12 msgid "New folder" -msgstr "" +msgstr "新文件夾" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 3336ef9e4c..b277a7ae2d 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 17:40+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" @@ -41,29 +41,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:592 +#: lib/config.php:598 msgid "<b>Note:</b> " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "<b>Note:</b> The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "<b>Note:</b> The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "<b>Note:</b> \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -76,7 +76,7 @@ msgstr "" #: templates/settings.php:8 templates/settings.php:27 msgid "Folder name" -msgstr "" +msgstr "資料夾名稱" #: templates/settings.php:9 msgid "External storage" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 2f76448264..c28ccb4879 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -219,7 +219,7 @@ msgstr "錯誤" #: js/apps.js:153 templates/apps.php:55 msgid "Update" -msgstr "" +msgstr "更新" #: js/apps.js:156 msgid "Updated" @@ -524,7 +524,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -536,7 +536,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 4b9019fdf6..fc56c1dfb6 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-25 01:54-0400\n" -"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"POT-Creation-Date: 2014-04-26 01:54-0400\n" +"PO-Revision-Date: 2014-04-26 05:54+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" @@ -526,7 +526,7 @@ msgid "Allow users to send mail notification for shared files" msgstr "允許使用者寄送有關分享檔案的郵件通知" #: templates/admin.php:262 -msgid "Set default expire date" +msgid "Set default expiration date" msgstr "" #: templates/admin.php:263 @@ -538,7 +538,7 @@ msgid "days" msgstr "" #: templates/admin.php:269 -msgid "Enforce expire date" +msgid "Enforce expiration date" msgstr "" #: templates/admin.php:270 diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 671251884a..0d80c7fe4f 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Please contact your administrator" => "Kontaktujte prosím vašeho správce systému.", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "Aplikace \"%s\" nemůže být nainstalována, protože není kompatibilní s touto verzí ownCloud.", "No app name specified" => "Nebyl zadan název aplikace", "Help" => "Nápověda", @@ -56,12 +57,14 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité.", "Please double check the <a href='%s'>installation guides</a>." => "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>.", "%s shared »%s« with you" => "%s s vámi sdílí »%s«", +"Sharing %s failed, because the file does not exist" => "Sdílení %s selhalo, protože soubor neexistuje", "Sharing %s failed, because the user %s is the item owner" => "Sdílení položky %s selhalo, protože uživatel %s je jejím vlastníkem", "Sharing %s failed, because the user %s does not exist" => "Sdílení položky %s selhalo, protože uživatel %s neexistuje", "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Sdílení položky %s selhalo, protože uživatel %s není členem žádné skupiny společné s uživatelem %s", "Sharing %s failed, because this item is already shared with %s" => "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílená", "Sharing %s failed, because the group %s does not exist" => "Sdílení položky %s selhalo, protože skupina %s neexistuje", "Sharing %s failed, because %s is not a member of the group %s" => "Sdílení položky %s selhalo, protože uživatel %s není členem skupiny %s", +"Sharing %s failed, because sharing with links is not allowed" => "Sdílení položky %s selhalo, protože sdílení pomocí linků není povoleno", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"", "seconds ago" => "před pár sekundami", "_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index 5b519c75df..9bdf84750b 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"You are accessing the server from an untrusted domain." => "You are accessing the server from an untrusted domain.", +"Please contact your administrator" => "Please contact your administrator", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "App \"%s\" can't be installed because it is not compatible with this version of ownCloud.", "No app name specified" => "No app name specified", "Help" => "Help", @@ -56,6 +58,7 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken.", "Please double check the <a href='%s'>installation guides</a>." => "Please double check the <a href='%s'>installation guides</a>.", "%s shared »%s« with you" => "%s shared \"%s\" with you", +"Sharing %s failed, because the file does not exist" => "Sharing %s failed, because the file does not exist", "Sharing %s failed, because the user %s is the item owner" => "Sharing %s failed, because the user %s is the item owner", "Sharing %s failed, because the user %s does not exist" => "Sharing %s failed, because the user %s does not exist", "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 351d469225..60d429b8a8 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"You are accessing the server from an untrusted domain." => "Está accediendo al servidor desde un dominio inseguro.", +"Please contact your administrator" => "Contacte a su administrador", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud", "No app name specified" => "No se ha especificado nombre de la aplicación", "Help" => "Ayuda", @@ -56,6 +58,7 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.", "%s shared »%s« with you" => "%s ha compatido »%s« contigo", +"Sharing %s failed, because the file does not exist" => "No se pudo compartir %s porque el archivo no existe", "Sharing %s failed, because the user %s is the item owner" => "Compartiendo %s ha fallado, ya que el usuario %s es el dueño del elemento", "Sharing %s failed, because the user %s does not exist" => "Compartiendo %s ha fallado, ya que el usuario %s no existe", "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Compartiendo %s ha fallado, ya que el usuario %s no es miembro de algún grupo que %s es miembro", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 082e1222d7..9ad40ff572 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"You are accessing the server from an untrusted domain." => "Sa kasutad serverit usalduseta asukohast", +"Please contact your administrator" => "Palun kontakteeru oma süsteemihalduriga", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "Rakendit \"%s\" ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga.", "No app name specified" => "Ühegi rakendi nime pole määratletud", "Help" => "Abiinfo", @@ -56,12 +58,22 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", "Please double check the <a href='%s'>installation guides</a>." => "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.", "%s shared »%s« with you" => "%s jagas sinuga »%s«", +"Sharing %s failed, because the file does not exist" => "%s jagamine ebaõnnestus, kuna faili pole olemas", +"Sharing %s failed, because the user %s is the item owner" => "%s jagamine ebaõnnestus, kuna kuna kasutaja %s on üksuse omanik", +"Sharing %s failed, because the user %s does not exist" => "%s jagamine ebaõnnestus, kuna kasutajat %s pole olemas", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "%s jagamine ebaõnnestus, kuna kasutaja %s pole ühegi grupi liige, millede liige on %s", +"Sharing %s failed, because this item is already shared with %s" => "%s jagamine ebaõnnestus, kuna see üksus on juba jagatud %s", +"Sharing %s failed, because the group %s does not exist" => "%s jagamine ebaõnnestus, kuna gruppi %s pole olemas", +"Sharing %s failed, because %s is not a member of the group %s" => "%s jagamine ebaõnnestus, kuna %s pole grupi %s liige", +"Sharing %s failed, because sharing with links is not allowed" => "%s jagamine ebaõnnestus, kuna linkidega jagamine pole lubatud", "Share type %s is not valid for %s" => "Jagamise tüüp %s ei ole õige %s jaoks", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Lubade seadistus %s jaoks ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi", +"Setting permissions for %s failed, because the item was not found" => "Lubade seadistus %s jaoks ebaõnnestus, kuna üksust ei leitud", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese", "Sharing backend %s not found" => "Jagamise tagarakendit %s ei leitud", "Sharing backend for %s not found" => "Jagamise tagarakendit %s jaoks ei leitud", "Sharing %s failed, because the user %s is the original sharer" => "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja", -"Sharing %s failed, because the permissions exceed permissions granted to %s" => "%s jagamine ebaõnnestus, kuna jagamise õigused ületavad %s jaoks määratud õigusi", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "%s jagamine ebaõnnestus, kuna antud õigused ületavad %s jaoks määratud õigusi", "Sharing %s failed, because resharing is not allowed" => "%s jagamine ebaõnnestus, kuna edasijagamine pole lubatud", "Sharing %s failed, because the sharing backend for %s could not find its source" => "%s jagamine ebaõnnestus, kuna jagamise tagarakend ei suutnud leida %s jaoks lähteallikat", "Sharing %s failed, because the file could not be found in the file cache" => "%s jagamine ebaõnnestus, kuna faili ei suudetud leida failide puhvrist", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index f4e916aa9c..e7d249add9 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"You are accessing the server from an untrusted domain." => "Vous accédez au serveur à partir d'un domaine non-approuvé.", +"Please contact your administrator" => "Veuillez contacter votre administrateur", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "L'application \"%s\" ne peut être installée car elle n'est pas compatible avec cette version de ownCloud.", "No app name specified" => "Aucun nom d'application spécifié", "Help" => "Aide", @@ -56,6 +58,7 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", "Please double check the <a href='%s'>installation guides</a>." => "Veuillez vous référer au <a href='%s'>guide d'installation</a>.", "%s shared »%s« with you" => "%s partagé »%s« avec vous", +"Sharing %s failed, because the file does not exist" => "Le partage de %s a échoué car le fichier n'existe pas", "Sharing %s failed, because the user %s is the item owner" => "Le partage de %s a échoué car l'utilisateur %s est le propriétaire de l'objet", "Sharing %s failed, because the user %s does not exist" => "Le partage de %s a échoué car l'utilisateur %s n'existe pas", "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Le partage de %s a échoué car l'utilisateur %s n'est membre d'aucun groupe auquel %s appartient", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index b61df49acc..291e2c5d51 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"You are accessing the server from an untrusted domain." => "Esta accedendo desde un dominio non fiábel.", +"Please contact your administrator" => "Contacte co administrador", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "Non é posíbel instalar o aplicativo «%s» por non seren compatíbel con esta versión do ownCloud.", "No app name specified" => "Non se especificou o nome do aplicativo", "Help" => "Axuda", @@ -56,24 +58,25 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar.", "Please double check the <a href='%s'>installation guides</a>." => "Volva comprobar as <a href='%s'>guías de instalación</a>", "%s shared »%s« with you" => "%s compartiu «%s» con vostede", -"Sharing %s failed, because the user %s is the item owner" => "Fallou a compartición de %s, xa que o propietario do elemento é o usuario %s", -"Sharing %s failed, because the user %s does not exist" => "Fallou a compartición de %s, xa que o usuario %s non existe", -"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Fallou a compartición de %s, xa que o usuario %s non é membro de ningún grupo que sexa membro de %s", -"Sharing %s failed, because this item is already shared with %s" => "Fallou a compartición de %s, xa que este elemento xa está compartido con %s", -"Sharing %s failed, because the group %s does not exist" => "Fallou a compartición de %s, xa que o grupo %s non existe", -"Sharing %s failed, because %s is not a member of the group %s" => "Fallou a compartición de %s, xa que %s non é membro do grupo %s", -"Sharing %s failed, because sharing with links is not allowed" => "Fallou a compartición de %s, xa que non está permitido compartir con ligazóns", +"Sharing %s failed, because the file does not exist" => "Fallou a compartición de %s, o ficheiro non existe", +"Sharing %s failed, because the user %s is the item owner" => "Fallou a compartición de %s, o propietario do elemento é o usuario %s", +"Sharing %s failed, because the user %s does not exist" => "Fallou a compartición de %s, o usuario %s non existe", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Fallou a compartición de %s, o usuario %s non é membro de ningún grupo que sexa membro de %s", +"Sharing %s failed, because this item is already shared with %s" => "Fallou a compartición de %s, este elemento xa está compartido con %s", +"Sharing %s failed, because the group %s does not exist" => "Fallou a compartición de %s, o grupo %s non existe", +"Sharing %s failed, because %s is not a member of the group %s" => "Fallou a compartición de %s, %s non é membro do grupo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Fallou a compartición de %s, non está permitido compartir con ligazóns", "Share type %s is not valid for %s" => "Non se admite a compartición do tipo %s para %s", -"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Non é posíbel estabelecer permisos para %s, xa que os permisos superan os permisos concedidos a %s", -"Setting permissions for %s failed, because the item was not found" => "Non é posíbel estabelecer permisos para %s, xa que non se atopa o elemento", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Non é posíbel estabelecer permisos para %s, os permisos superan os permisos concedidos a %s", +"Setting permissions for %s failed, because the item was not found" => "Non é posíbel estabelecer permisos para %s, non se atopa o elemento", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "A infraestrutura de compartición %s ten que implementar a interface OCP\\Share_Backend", "Sharing backend %s not found" => "Non se atopou a infraestrutura de compartición %s", "Sharing backend for %s not found" => "Non se atopou a infraestrutura de compartición para %s", -"Sharing %s failed, because the user %s is the original sharer" => "Fallou a compartición de %s, xa que a compartición orixinal é do usuario %s", -"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Fallou a compartición de %s, xa que os permisos superan os permisos concedidos a %s", -"Sharing %s failed, because resharing is not allowed" => "Fallou a compartición de %s, xa que non está permitido repetir a compartción", -"Sharing %s failed, because the sharing backend for %s could not find its source" => "Fallou a compartición de %s, xa que a infraestrutura de compartición para %s non foi quen de atopar a orixe", -"Sharing %s failed, because the file could not be found in the file cache" => "Fallou a compartición de %s, xa que non foi posíbel atopar o ficheiro na caché de ficheiros", +"Sharing %s failed, because the user %s is the original sharer" => "Fallou a compartición de %s, compartición orixinal é do usuario %s", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Fallou a compartición de %s, os permisos superan os permisos concedidos a %s", +"Sharing %s failed, because resharing is not allowed" => "Fallou a compartición de %s, non está permitido repetir a compartción", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Fallou a compartición de %s, a infraestrutura de compartición para %s non foi quen de atopar a orixe", +"Sharing %s failed, because the file could not be found in the file cache" => "Fallou a compartición de %s, non foi posíbel atopar o ficheiro na caché de ficheiros", "Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","hai %n minutos"), diff --git a/lib/l10n/it.php b/lib/l10n/it.php index e565b01fdf..af66c7d8f4 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"You are accessing the server from an untrusted domain." => "Stai accedendo al server da un dominio non affidabile.", +"Please contact your administrator" => "Contatta il tuo amministratore", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "L'applicazione \"%s\" non può essere installata poiché non è compatibile con questa versione di ownCloud.", "No app name specified" => "Il nome dell'applicazione non è specificato", "Help" => "Aiuto", @@ -56,22 +58,25 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the <a href='%s'>installation guides</a>." => "Leggi attentamente le <a href='%s'>guide d'installazione</a>.", "%s shared »%s« with you" => "%s ha condiviso «%s» con te", +"Sharing %s failed, because the file does not exist" => "Condivisione di %s non riuscita, poiché il file non esiste", "Sharing %s failed, because the user %s is the item owner" => "Condivisione di %s non riuscita, poiché l'utente %s è il proprietario dell'oggetto", "Sharing %s failed, because the user %s does not exist" => "Condivisione di %s non riuscita, poiché l'utente %s non esiste", "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Condivisione di %s non riuscita, poiché l'utente %s non appartiene ad alcun gruppo di cui %s è membro", "Sharing %s failed, because this item is already shared with %s" => "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s", "Sharing %s failed, because the group %s does not exist" => "Condivisione di %s non riuscita, poiché il gruppo %s non esiste", "Sharing %s failed, because %s is not a member of the group %s" => "Condivisione di %s non riuscita, poiché %s non appartiene al gruppo %s", -"Sharing %s failed, because sharing with links is not allowed" => "Condivisione di %s non riuscita, poiché i link non sono ammessi", +"Sharing %s failed, because sharing with links is not allowed" => "Condivisione di %s non riuscita, poiché i collegamenti non sono consentiti", "Share type %s is not valid for %s" => "Il tipo di condivisione %s non è valido per %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Impostazione permessi per %s non riuscita, poiché i permessi superano i permessi accordati a %s", +"Setting permissions for %s failed, because the item was not found" => "Impostazione permessi per %s non riuscita, poiché l'elemento non è stato trovato", "Sharing backend %s must implement the interface OCP\\Share_Backend" => "Il motore di condivisione %s deve implementare l'interfaccia OCP\\Share_Backend", "Sharing backend %s not found" => "Motore di condivisione %s non trovato", "Sharing backend for %s not found" => "Motore di condivisione di %s non trovato", "Sharing %s failed, because the user %s is the original sharer" => "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso precedentemente", -"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Condivisione di %s non riuscita, poiché i permessi sono superiori a quelli rilasciati a %s", -"Sharing %s failed, because resharing is not allowed" => "Condivisione di %s non riuscita, poiché la ri-condivisione non è ammessa", -"Sharing %s failed, because the sharing backend for %s could not find its source" => "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua origine", -"Sharing %s failed, because the file could not be found in the file cache" => "Condivisione di %s non riuscita, poiché il file non risiede nella cache", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Condivisione di %s non riuscita, poiché i permessi superano quelli accordati a %s", +"Sharing %s failed, because resharing is not allowed" => "Condivisione di %s non riuscita, poiché la ri-condivisione non è consentita", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua fonte", +"Sharing %s failed, because the file could not be found in the file cache" => "Condivisione di %s non riuscita, poiché il file non è stato trovato nella cache", "Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"", "seconds ago" => "secondi fa", "_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index d86f7757ae..9144e5eeeb 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"You are accessing the server from an untrusted domain." => "Você está acessando o servidor a partir de um domínio não confiável.", +"Please contact your administrator" => "Por favor, contate o administrador.", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "O aplicativo \"%s\" não pode ser instalado porque não é compatível com esta versão do ownCloud.", "No app name specified" => "O nome do aplicativo não foi especificado.", "Help" => "Ajuda", @@ -56,6 +58,7 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, confira os <a href='%s'>guias de instalação</a>.", "%s shared »%s« with you" => "%s compartilhou »%s« com você", +"Sharing %s failed, because the file does not exist" => "Compartilhamento %s falhou, porque o arquivo não existe", "Sharing %s failed, because the user %s is the item owner" => "Compartilhamento %s falhou, porque o usuário %s é o proprietário do item", "Sharing %s failed, because the user %s does not exist" => "Compartilhamento %s falhou, porque o usuário %s não existe", "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Compartilhamento %s falhou, porque o usuário %s não é membro de nenhum grupo que o usuário %s pertença", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 17108d4bdf..4a91bbe4f9 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Please contact your administrator" => "Kontaktujte prosím vášho administrátora", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "Aplikácia \"%s\" nemôže byť nainštalovaná kvôli nekompatibilite z touto verziou ownCloudu.", "No app name specified" => "Nešpecifikované meno aplikácie", "Help" => "Pomoc", @@ -40,8 +41,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "V názve databázy %s nemôžete používať bodky", "MS SQL username and/or password not valid: %s" => "Používateľské meno, alebo heslo MS SQL nie je platné: %s", "You need to enter either an existing account or the administrator." => "Musíte zadať jestvujúci účet alebo administrátora.", +"MySQL/MariaDB username and/or password not valid" => "Používateľské meno a/alebo heslo pre MySQL/MariaDB databázu je neplatné", "DB Error: \"%s\"" => "Chyba DB: \"%s\"", "Offending command was: \"%s\"" => "Podozrivý príkaz bol: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "Používateľ '%s'@'localhost' už v MySQL/MariaDB existuje.", +"Drop this user from MySQL/MariaDB" => "Zahodiť používateľa z MySQL/MariaDB.", +"MySQL/MariaDB user '%s'@'%%' already exists" => "Používateľ '%s'@'%%' už v MySQL/MariaDB existuje", +"Drop this user from MySQL/MariaDB." => "Zahodiť používateľa z MySQL/MariaDB.", "Oracle connection could not be established" => "Nie je možné pripojiť sa k Oracle", "Oracle username and/or password not valid" => "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné", "Offending command was: \"%s\", name: %s, password: %s" => "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s", @@ -51,6 +57,16 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.", "Please double check the <a href='%s'>installation guides</a>." => "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>.", "%s shared »%s« with you" => "%s s vami zdieľa »%s«", +"Sharing %s failed, because the file does not exist" => "Zdieľanie %s zlyhalo, pretože súbor neexistuje", +"Sharing %s failed, because the user %s is the item owner" => "Zdieľanie %s zlyhalo, pretože používateľ %s je vlastníkom položky", +"Sharing %s failed, because the user %s does not exist" => "Zdieľanie %s zlyhalo, pretože používateľ %s neexistuje", +"Sharing %s failed, because this item is already shared with %s" => "Zdieľanie %s zlyhalo, pretože táto položka už je zdieľaná s %s", +"Sharing %s failed, because the group %s does not exist" => "Zdieľanie %s zlyhalo, pretože skupina %s neexistuje", +"Sharing %s failed, because %s is not a member of the group %s" => "Zdieľanie %s zlyhalo, pretože %s nie je členom skupiny %s", +"Sharing %s failed, because sharing with links is not allowed" => "Zdieľanie %s zlyhalo, pretože zdieľanie odkazom nie je povolené", +"Share type %s is not valid for %s" => "Typ zdieľania %s nie je platný pre %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Nastavenie povolení pre %s zlyhalo, pretože povolenia prekračujú povolenia udelené %s", +"Setting permissions for %s failed, because the item was not found" => "Nastavenie povolení pre %s zlyhalo, pretože položka sa nenašla", "Could not find category \"%s\"" => "Nemožno nájsť danú kategóriu \"%s\"", "seconds ago" => "pred sekundami", "_%n minute ago_::_%n minutes ago_" => array("pred %n minútou","pred %n minútami","pred %n minútami"), @@ -62,7 +78,9 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), "last year" => "minulý rok", "years ago" => "pred rokmi", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "V mene používateľa sú povolené len nasledovné znaky: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"", "A valid username must be provided" => "Musíte zadať platné používateľské meno", -"A valid password must be provided" => "Musíte zadať platné heslo" +"A valid password must be provided" => "Musíte zadať platné heslo", +"The username is already being used" => "Meno používateľa je už použité" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 7cc1b155bc..d7edeea2f5 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"You are accessing the server from an untrusted domain." => "Sunucuya güvenilmeyen bir alan adından ulaşıyorsunuz.", +"Please contact your administrator" => "Lütfen yöneticinizle iletişime geçin", "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz.", "No app name specified" => "Uygulama adı belirtilmedi", "Help" => "Yardım", @@ -56,6 +58,7 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the <a href='%s'>installation guides</a>." => "Lütfen <a href='%s'>kurulum kılavuzlarını</a> iki kez kontrol edin.", "%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", +"Sharing %s failed, because the file does not exist" => "%s paylaşımı, dosya mevcut olmadığından başarısız oldu", "Sharing %s failed, because the user %s is the item owner" => "%s paylaşımı, %s öge sahibi olduğundan başarısız oldu", "Sharing %s failed, because the user %s does not exist" => "%s paylaşımı, %s kullanıcısı mevcut olmadığından başarısız oldu", "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "%s paylaşımı, %s kullanıcısının %s üyeliklerinden birine sahip olmadığından başarısız oldu", diff --git a/settings/l10n/ast.php b/settings/l10n/ast.php index b86d7d88bf..3892d48a9a 100644 --- a/settings/l10n/ast.php +++ b/settings/l10n/ast.php @@ -4,6 +4,7 @@ $TRANSLATIONS = array( "Encryption" => "Cifráu", "Invalid request" => "Solicitú non válida", "Error" => "Fallu", +"deleted" => "desaniciáu", "Groups" => "Grupos", "Delete" => "Desaniciar", "Port" => "Puertu", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index b33d305592..8a33e4691e 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -115,6 +115,8 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Allow mail notification" => "Povolit e-mailová upozornění", "Allow users to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", +"Expire after " => "Vyprší po", +"days" => "dnech", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 1d1cb17a7f..cbfde8f5f7 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -115,6 +115,9 @@ $TRANSLATIONS = array( "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 users to send mail notification for shared files" => "Allow users to send mail notification for shared files", +"Expire after " => "Expire after ", +"days" => "days", +"Expire shares by default after N days" => "Expire shares by default after N days", "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 0b2ca6fea3..5feb443690 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -115,6 +115,9 @@ $TRANSLATIONS = array( "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 correo electrónico", "Allow users to send mail notification for shared files" => "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", +"Expire after " => "Caduca luego de", +"days" => "días", +"Expire shares by default after N days" => "Archivos compartidos caducan luego de N días", "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 cifrada.", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 5ad3b4b0d6..a76b73c9ae 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -115,6 +115,9 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Allow mail notification" => "Luba teavitused e-postiga", "Allow users to send mail notification for shared files" => "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", +"Expire after " => "Aegu pärast", +"days" => "päeva", +"Expire shares by default after N days" => "Peata jagamine N päeva möödudes", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index f82799eb71..15e7b167b9 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -104,6 +104,9 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Allow mail notification" => "Salli sähköposti-ilmoitukset", "Allow users to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", +"Expire after " => "Vanhenna", +"days" => "päivän jälkeen", +"Expire shares by default after N days" => "Vanhenna jaot oletuksena N päivän jälkeen", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 0464dee78f..da109c0467 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -115,6 +115,9 @@ $TRANSLATIONS = array( "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 users to send mail notification for shared files" => "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés", +"Expire after " => "Expire après", +"days" => "jours", +"Expire shares by default after N days" => "Par défaut, les partages expireront après N jours", "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/gl.php b/settings/l10n/gl.php index ab609ec1bc..82b7db6ec5 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -115,6 +115,9 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Allow mail notification" => "Permitir o envío de notificacións por correo", "Allow users to send mail notification for shared files" => "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", +"Expire after " => "Caduca após", +"days" => "días", +"Expire shares by default after N days" => "As comparticións, de xeito predeterminado, caducan aos N días", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 74c16029a8..4e2d4c3d6d 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -114,7 +114,10 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Allow mail notification" => "Consenti le notifiche tramite posta elettronica", -"Allow users to send mail notification for shared files" => "Consenti agli utenti di mandare e-mail di notifica per i file condivisi", +"Allow users to send mail notification for shared files" => "Consenti agli utenti di inviare email di notifica per i file condivisi", +"Expire after " => "Scadenza dopo", +"days" => "giorni", +"Expire shares by default after N days" => "Le condivisioni scadono in modo predefinito dopo N giorni", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 482823926b..4a727fb03d 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -115,6 +115,9 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Allow mail notification" => "Permitir notificação por email", "Allow users to send mail notification for shared files" => "Permitir aos usuários enviar notificação de email para arquivos compartilhados", +"Expire after " => "Expirar depois de", +"days" => "dias", +"Expire shares by default after N days" => "Expirar compartilhamentos automaticamente depois de N dias", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 81bb6f1755..b0a961df48 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -25,7 +25,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Неправильный пароль восстановления. Проверьте пароль и попробуйте еще раз.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Используемый механизм не поддерживает смену паролей, но пользовательский ключ шифрования был успешно обновлён", "Unable to change password" => "Невозможно изменить пароль", +"Sending..." => "Отправляется ...", "User Documentation" => "Пользовательская документация", +"Admin Documentation" => "Документация администратора", "Update to {appversion}" => "Обновить до {версия приложения}", "Disable" => "Выключить", "Enable" => "Включить", @@ -63,6 +65,8 @@ $TRANSLATIONS = array( "Fatal issues only" => "Только критические проблемы", "None" => "Нет новостей", "Login" => "Логин", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Предупреждение безопасности", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера.", @@ -102,6 +106,9 @@ $TRANSLATIONS = array( "Server address" => "Адрес сервера", "Port" => "Порт", "Credentials" => "Полномочия", +"SMTP Username" => "Имя пользователя", +"SMTP Password" => "Пароль", +"Send email" => "Отправить сообщение", "Log" => "Журнал", "Log level" => "Уровень детализации журнала", "More" => "Больше", @@ -111,6 +118,7 @@ $TRANSLATIONS = array( "Add your App" => "Добавить приложение", "More Apps" => "Больше приложений", "Select an App" => "Выберите приложение", +"Documentation:" => "Документация", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span> лицензия. Автор <span class=\"author\"></span>", "Administrator Documentation" => "Документация администратора", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index d0143e91cb..3468a87ae1 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,7 +1,12 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "Zadaná neplatná hodnota pre %s", "Saved" => "Uložené", +"test email settings" => "nastavenia testovacieho emailu", +"If you received this email, the settings seem to be correct." => "Ak ste dostali tento email, nastavenie je správne.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Vyskytol sa problém pri odosielaní emailu. Prosím, znovu skontrolujte svoje nastavenia.", "Email sent" => "Email odoslaný", +"You need to set your user email before being able to send test emails." => "Musíte nastaviť svoj používateľský email, než budete môcť odoslať testovací email.", "Send mode" => "Mód odosielania", "Encryption" => "Šifrovanie", "Authentication method" => "Autentifikačná metóda", @@ -11,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nemožno zmeniť meno a priezvisko", "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možné pridať skupinu", +"Files decrypted successfully" => "Súbory sú úspešne dešifrované", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nemožno dešifrovať vaše súbory, skontrolujte svoj owncloud.log alebo požiadajte o pomoc správcu", +"Couldn't decrypt your files, check your password and try again" => "Nemožno dešifrovať vaše súbory, skontrolujte svoje heslo a skúste to znova", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", "Unable to delete group" => "Nie je možné odstrániť skupinu", @@ -67,6 +75,7 @@ $TRANSLATIONS = array( "Fatal issues only" => "Len fatálne problémy", "None" => "Žiadny", "Login" => "Prihlásenie", +"Plain" => "Neformátovaný", "NT LAN Manager" => "NT LAN Manager", "SSL" => "SSL", "TLS" => "TLS", @@ -87,6 +96,7 @@ $TRANSLATIONS = array( "Internet connection not working" => "Pripojenie na internet nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru.", "Cron" => "Cron", +"Cron was not executed yet!" => "Cron sa ešte nespustil!", "Execute one task with each page loaded" => "Vykonať jednu úlohu s každým načítaní stránky", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Použite systémovú službu cron, ktorá zavolá súbor cron.php každých 15 minút.", @@ -102,17 +112,23 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povoliť používateľom zdieľať s kýmkoľvek", "Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách", "Allow mail notification" => "Povoliť odosielať upozornenia emailom", +"Allow users to send mail notification for shared files" => "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", +"Expire after " => "Platnosť", +"days" => "dni", "Security" => "Zabezpečenie", "Enforce HTTPS" => "Vynútiť HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL.", "Email Server" => "Email server", +"This is used for sending out notifications." => "Používa sa na odosielanie upozornení.", "From address" => "Z adresy", +"Authentication required" => "Vyžaduje sa overenie", "Server address" => "Adresa servera", "Port" => "Port", "Credentials" => "Prihlasovanie údaje", "SMTP Username" => "SMTP používateľské meno", "SMTP Password" => "SMTP heslo", +"Test email settings" => "Nastavenia testovacieho emailu", "Send email" => "Odoslať email", "Log" => "Záznam", "Log level" => "Úroveň záznamu", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index f3b189e08b..f76eed303b 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -115,6 +115,9 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Allow mail notification" => "Tillåt e-post notifikation", "Allow users to send mail notification for shared files" => "Tillåt användare att skicka mailnotifieringar för delade filer", +"Expire after " => "Förfaller efter", +"days" => "dagar", +"Expire shares by default after N days" => "Låt delningar förfalla som standard efter N dagar", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 6d9fdc0f5b..1122184f50 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -10,7 +10,7 @@ $TRANSLATIONS = array( "Send mode" => "Gönderme kipi", "Encryption" => "Şifreleme", "Authentication method" => "Kimlik doğrulama yöntemi", -"Unable to load list from App Store" => "Uygulama Mağazasın'dan liste yüklenemiyor", +"Unable to load list from App Store" => "Uygulama Mağazası'ndan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", "Your full name has been changed." => "Tam adınız değiştirildi.", "Unable to change full name" => "Tam adınız değiştirilirken hata", @@ -115,6 +115,9 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", "Allow users to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", +"Expire after " => "Şu süreden sonra süresi dolsun", +"days" => "gün", +"Expire shares by default after N days" => "Paylaşımların süresini öntanımlı olarak N günden sonra doldur", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", diff --git a/settings/l10n/zh_HK.php b/settings/l10n/zh_HK.php index 633b4252b6..7237a99c88 100644 --- a/settings/l10n/zh_HK.php +++ b/settings/l10n/zh_HK.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Email sent" => "郵件已傳", "Encryption" => "加密", "Error" => "錯誤", +"Update" => "更新", "Groups" => "群組", "Delete" => "刪除", "None" => "空", -- GitLab